vote up 0 vote down star

I have a client who needs somebody to develop a "countdown widget" for their main public website.

It has to do with graduation dates.

So, any customer not registered with the widget would see "Start your Graduation Countdown". Clicking on that would do something like provide them with an input form that includes name and graduation date.

Then, every time they visit the website (from that IP address at least) they see the countdown to their graduation date.

I'm not sure if this should be tied to a cookie, an IP address, or a user account... but it sounds like the client wants it to be tied to a cookie or IP address.

I have zero experience dealing with widgets, but I'm fluent in php, ASP, html, and css so hopefully it wouldn't be too bad.

How should I go about creating this widget? Specifically, I need to know about how long it would take me so I can provide an estimate. I have too much other stuff on my plate, otherwise I'd just make one of my own to learn how to do it.

Thanks in advance for your time.

flag

1  
What sort of widget? A plugin for an existing CMS/iGoogle, a self contained code block, something to be pulled in with JS? – Andy Aug 24 at 17:51
1  
@hamlin, as noted by Andy, you really need to define your requirements. – ricebowl Aug 24 at 18:19
It should be a self-contained code block, or something I can easily plug into their current ASP.NET-based website. – hamlin11 Aug 24 at 19:08

1 Answer

vote up 1 vote down check

Why not use a jquery plugin like this one http://keith-wood.name/countdown.html

Looks like you can style it in anyway you like. I'm not sure why your getting caught up in the terminology of 'widget'. Its really just a bit of self contained code you can drop in.

Right, so you can use the above for the client side code. Then all you have to do is remember the date for each user.

If this ties to a user account then this bit is easy. When the user is logged in, you can store the graduation day in a database somewhere (same as where you store the log in credentials) and just set the timer with that each time.

If not, then you are stuck with cookies. Just store the date a cookie and get that out each time to set the date in the countdown 'widget'

hope this helps

link|flag
Thanks for setting me straight. I'm a bit clueless on setting this in cookies, but I'm sure it's easy to do. Thanks. – hamlin11 Aug 25 at 3:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.