I pasted this in and it didnt work
$('div#countdowntimer').countdown({until:new Date
(2009,9,15,14,0,0),format:'odHMS'});
is there something im not doing right? heres my whole page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>countdown</title>
<link href="css/style.css" type="text/css" rel="stylesheet"/>
<link href="css/jquery.countdown.css" type="text/css" rel="stylesheet"/>
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/countdown.js" type="text/javascript"></script>
<script type="text/javascript">
$('div#countdowntimer').countdown({until:new Date
(2009,9,15,14,0,0),format:'odHMS'});
</script>
</head>
<body>
<div id="countdowntimer"></div>
</body>
</html>
I'm trying to make it countdown to December 15th, which I can do
myself but I'm trying to figure out why this won't work because I want
to place more than 1 type of countdown on my site
On Nov 18, 2008, at 2:51 17 PM, Mihai wrote:
$('div#countdowntimer').countdown({until:new Date
(2009,9,15,14,0,0),format:'odHMS'});