[jQuery] Re: jquery.dates

2009-03-20 Thread RyanEv
Anyone have any other ideas? On Mar 19, 2:53 pm, RyanEv wrote: > I still get the same error on the datePicker line. > > $(document).ready( function () >         { >                       setTimeout(function(){ >                       $("#sample1").datePicker(); >                }, 50); >    

[jQuery] Re: jquery.dates

2009-03-19 Thread RyanEv
I still get the same error on the datePicker line. $(document).ready( function () { setTimeout(function(){ $("#sample1").datePicker(); }, 50); }); Is the DatePicker function included in the jquery 1.3 file?

[jQuery] Re: jquery.dates

2009-03-19 Thread Jack Killpatrick
IIRC I had a similar issue with datePicker in IE and doing something like this resolved it: $(document).ready(function(){ setTimeout(function(){ $('#sample1').datePicker(); }, 50); }); worth a quick try, at least. I've also had to use a setTimeout like that for IE when there was