Question : jquery countdown

Hi there,

I am trying to use jquery Countdown
http://keith-wood.name/countdown.html

It works perfectly, but I didn´t understand how to include the expiryUrl  property inside it. I tried as below, but it doesn´t work.

Could you please modify the code below to make it right?  Thanks!
1:
2:
3:
4:
5:
6:
7:
$(function () {

	$('#defaultCountdown').countdown({format: 'MS', compact: false, expiryurl: true, until: $.countdown.UTCDate(-3, 2010, 8, 25, <%=(rsParsingStartTimes.Fields.Item("HourStart").Value)-24%>, <%=(rsParsingStartTimes.Fields.Item("MinuteStart").Value)%>+1, 0, 0),
	expiryurl: "www.mysite.com.br/closingTest.html"
	});

});

Answer : jquery countdown

I see you set it twice :

expiryurl: true,
expiryurl: "www.mysite.com.br/closingTest.html"

replace the << true >> by the "www.mysite.com.br/closingTest.html"

be careful with the case, expiryurl and expiryUrl


1:
2:
$('#defaultCountdown').countdown({format: 'MS', compact: false, expiryUrl: "www.mysite.com.br/closingTest.html", until: $.countdown.UTCDate(-3, 2010, 8, 25, <%=(rsParsingStartTimes.Fields.Item("HourStart").Value)-24%>, <%=(rsParsingStartTimes.Fields.Item("MinuteStart").Value)%>+1, 0, 0)
	});
Random Solutions  
 
programming4us programming4us