[jQuery] Re: jQuery Countdown help

2009-09-18 Thread MorningZ
Any indication with what the error/is other than "having trouble"? I've been using coding with this plugin the past few days and haven't had any issue setting that date On Sep 18, 4:12 pm, Jason wrote: > I am attempting to use the jQuery Countdown plugin > fromhttp://keith-wood.name/countdow

[jQuery] Re: jQuery Countdown and close button

2009-07-05 Thread Keith
The problem is that the closeButton setup is called immediately it is encountered - before the button itself exists - so no match and nothing happens. You need to move the $('#closeButton').click(function () { ... }); inside the document ready call: $(function () { ...}).

[jQuery] Re: jQuery Countdown and close button

2009-07-04 Thread Doug Avery
It looks like neither the Quiz or Quizc div ids have quotes around them...could that be it?

[jQuery] Re: jQuery Countdown, can anyone get it to work??

2009-05-15 Thread Davo
HI Eric, I'm lost on that. I've tried many different variations and now feel like crying. Great script :) but poor documentation :( I'll keep trying On May 15, 3:53 pm, elubin wrote: > where is the    until2d    object? > > eric

[jQuery] Re: jQuery Countdown, can anyone get it to work??

2009-05-15 Thread elubin
where is theuntil2dobject? eric

[jQuery] Re: jQuery countdown with simple percentage bar display?

2009-04-22 Thread Andy Matthews
Thanks Eric. That looks like just what I need, the timer version. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Eric Garside Sent: Wednesday, April 22, 2009 3:56 PM To: jQuery (English) Subject: [jQuery] Re: jQuery countdown

[jQuery] Re: jQuery countdown with simple percentage bar display?

2009-04-22 Thread Eric Garside
I've got a clock plugin which can do countdown timers, called epiClock. http://code.google.com/p/epiclock With a pretty simple rendering function (covered in the docs here: http://eric.garside.name/docs.html?p=epiclock ), you should be able to hook it into a progress bar, or merely display a coun

[jQuery] Re: jQuery countdown with simple percentage bar display?

2009-04-22 Thread Richard D. Worth
You may consider using jQuery UI Progressbar as a base: http://jqueryui.com/demos/progressbar/ You could handle the change event and inspect the value, to see which class to add for changing the color: http://docs.jquery.com/UI/Progressbar#event-change - Richard On Wed, Apr 22, 2009 at 2:35 PM

[jQuery] Re: Jquery Countdown!!!

2008-11-21 Thread bthreesix
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 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> http://www.w3.org/1999/xhtml";> countdown

[jQuery] Re: Jquery Countdown!!!

2008-11-18 Thread Mihai
I also tried to play around with this but still without success. Apparently you can initialize the date like this: var liftoffTime = new Date(); liftoffTime.setDate(2009,8,1,14,0,0); (year / month / day / hour / minute / seccond) but it keeps counting "65 months and down".. and starting o

[jQuery] Re: Jquery Countdown!!!

2008-11-18 Thread Mihai
I found out how (just a couple of minutes ago): You don't need to initialize a variable using the new Date, but do the initialization inside .countdown({ example: $('div#countdowntimer').countdown({until:new Date (2009,9,15,14,0,0),format:'odHMS'}); This will countdown to: September 15th 2009,

[jQuery] Re: Jquery Countdown!!!

2008-11-09 Thread B3
I got it to work, but I see the "+ 5" is what sets the days left to countdown to. Everytime I reupload this will change since the countdown will start over.. Is there a way I can set a specific date instead of days left? On Nov 9, 10:45 am, CodingCyborg <[EMAIL PROTECTED]> wrote: > Since the way

[jQuery] Re: Jquery Countdown!!!

2008-11-09 Thread CodingCyborg
Since the way this forum is set up the line breaks are changed. This caused some of your code lines to be off. The line after "layout:" with the "+" at the end should be on the same line as the "layout:" line. Also, I'm not sure if this one matters, but put the "'yODHMS'," on the line above it rig

[jQuery] Re: Jquery Countdown!!!

2008-11-09 Thread bthreesix
http://designbishop.com/4/ On Nov 9, 2008, at 9:43 46 AM, Pixelstuff wrote: > > Do you have a test page we can view? > > > > On Nov 8, 11:52 pm, B3 <[EMAIL PROTECTED]> wrote: >> I did exactly what you said, added the top to my and added the >> span to the html and still nothing. Seems the file

[jQuery] Re: Jquery Countdown!!!

2008-11-09 Thread Pixelstuff
Do you have a test page we can view? On Nov 8, 11:52 pm, B3 <[EMAIL PROTECTED]> wrote: > I did exactly what you said, added the top to my and added the > span to the html and still nothing.  Seems the files are being loaded, > so I don't understand whats going on.. anythin else I can try? > >

[jQuery] Re: Jquery Countdown!!!

2008-11-08 Thread B3
I did exactly what you said, added the top to my and added the span to the html and still nothing. Seems the files are being loaded, so I don't understand whats going on.. anythin else I can try? On Nov 8, 4:49 pm, FrenchiINLA <[EMAIL PROTECTED]> wrote: > Add the following in the header of your

[jQuery] Re: Jquery Countdown!!!

2008-11-08 Thread FrenchiINLA
Add the following in the header of your page with the correct liftoffTime value $(function() { var liftoffTime = new Date(); liftoffTime.setDate(liftoffTime.getDate() + 5); $('#listLayout').countdown({ until: liftoffTime, format: 'yODHMS',

[jQuery] Re: JQuery Countdown

2008-11-05 Thread ricardobeat
That code works straight away. All you need is