Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,
plz give the simple jquery countdowm timer for minutes and seconds only. And also explain how to use it in asp.net
Posted

I used recently the jquery countdown in this link: http://keith-wood.name/countdown.html[^]

Your markup could be like this
HTML



and your JavaScript could be like this
JavaScript
var liftoffTime = new Date(Date.parse(jQuery('.countdown').attr('data-date')));
jQuery('.countdown').countdown({ until: liftoffTime, compact: true, description: '' });


I hope this helps!
 
Share this answer
 
Thanks to all...
but I want to redirect the page after 20 min in c# asp.net. plz reply as soon as possible
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900