Review: Dealighted.com

As you may have picked up on with my Black Friday article, I am definitely a fan of pursuing great deals, especially when it comes to electronics. When you think of deal sites and communities, Slick Deals and Fat Wallet probably come to mind first - and rightfully so with Slick Deals having over 140,000 members by itself. Dealighted.com is a relatively new service that aids the deal hunter by aggregating all of the deals in one central location.

dealighted.com
Dealighted recently switched to a 3 column layout but I liked it more with 2 columns.

Features

Dealighted combines the hot deals, Black Friday and free stuff sections from Anandtech, Slick Deals, Fat Wallet and Gottadeal. It is updated frequently to keep up with the breakneck speed that deals emerge on these sites. Dealighted's features are rather simplistic in nature - you can sign up for an account that allows you to adjust what deal sites are used as sources as well as slightly alter the format the deals are displayed (only hot threads, only new deals, forum style). Having an account also lets you save deals so you can quickly come back to them later on.

Things that could use some work

While I really like the whole dealighted experience and simplicity, I don't think it brings much to the table. In its pure form, it is just an aggregator. Every deal link you click takes you to the actual deal site, which gets rather annoying when you use it for a while. It would be nice if clicking on the deal activated a little JavaScript action to display more information on the deal, as Slick Deals has. Briefly looking through their code, they're already loading the Prototype JS library so it wouldn't be too much work to implement a feature like this. Heck, I even did something like that with the RSS aggregator with user accounts I created for an information design project for school.

Actually, since I would really like to see this feature implemented here are some code snippets for the dealighted.com developers to take a look at. However, I am not sure how much of that is possible since several of the deals originate from forum threads and I don't know how much detail you can get from a forum's RSS feed.

[code lang="javascript"]function toggle(id) { //handy JS function for showing/hiding things //a form of it is already in the prototype library var monkey = document.getElementById(id); if ( monkey.style.display != 'none' ) { monkey.style.display = 'none'; } else { monkey.style.display = ''; } }[/code] [code lang="php"]< ?php global id; for (x = 0; x < max; x++) { //max being # of items to display per page id = "description_" . x; //creates a unique id for each element //you're going to want to put the code for getting the feed items here } ?>[/code] [code lang="javascript"]Toggle Description //how to activate show/hide action[/code] [code lang="php"]

[/code]

Wrap-up

Until November 24th, dealighted is giving away a 50-inch plasma TV to one lucky person that has an account and has saved at least one deal. Dealighted is technically a "beta", so hopefully if they take some of my constructive criticism into account they will have a greatly improved final version. I read through their privacy policy and terms of use and nothing fishy caught my eye. They do however log your IP, time of visit and referring site to help target advertisements but then again doesn't everybody do that nowadays? Overall, I enjoyed using dealighted and expect to see some changes and feature additions in the near future.

Disclaimer: I was paid enough money to buy 500 packages (at the going rate of 25 cents each) of ramen noodles for this review.