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