[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 stonesoupandboiledfr...@gmail.com wrote: I am attempting to use the jQuery Countdown plugin

[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 elubin
where is theuntil2dobject? eric

[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 elu...@yahoo.com wrote: where is the    until2d    object? eric

[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

[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

[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!!!

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 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN

[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

[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

[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 right

[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 head and added the span to the html and still nothing. Seems the files are

[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 head 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

[jQuery] Re: Jquery Countdown!!!

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

[jQuery] Re: Jquery Countdown!!!

2008-11-08 Thread B3
I did exactly what you said, added the top to my head 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

[jQuery] Re: JQuery Countdown

2008-11-05 Thread ricardobeat
That code works straight away. All you need is html head script etc etc script type=text/javascript $(document).ready(function(){ $('#count').countdown({until: liftoffTime, format: 'yODHMS', layout: 'ul%Yli%n %l/li%Y%Oli%n %l/li%O%Dli%n %l/li %D' + '%Hli%n %l/li%H%Mli%n %l/li%M%Sli%n

[jQuery] Re: JQuery Countdown

2008-11-04 Thread ami'n
Is there any workaround for this i wonder why i'm still unable to make it work? $(function(){ $('#countdown2').countdown({until: '+7D +7H +22M +56S ', format: 'yODHMS', layout: '%S%n %l%S, %M%n %l%M, %H%n %l%H, and %D%n %l%D'}); }); there's still an error On Oct 29, 5:17 pm, B3

[jQuery] Re: jQuery countdown

2008-08-25 Thread [EMAIL PROTECTED]
Nice it works great. Thx for you help! On 24 aug, 13:56, Sarbesh [EMAIL PROTECTED] wrote: instead of div you can use span Je mag weer spelen over span class=countdown secs={$error}/ span!

[jQuery] Re: jQuery countdown

2008-08-24 Thread Sarbesh
instead of div you can use span Je mag weer spelen over span class=countdown secs={$error}/ span!

[jQuery] Re: jQuery countdown

2008-08-24 Thread Sarbesh
instead of div you can use span Je mag weer spelen over span class=countdown secs={$error}/ span! hopefully this will do it..