[jQuery] Re: IE - 'object does not support this property or method'

2008-08-22 Thread pedalpete
Thanks Mike, I can't believe I missed that one. Using .join() to create the var works nicely too, and I assume the .length is quicker than an if statement? Looks simpler anyway. Thanks Pete On Aug 21, 1:26 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > You have a typo on line 68 of selectDate

[jQuery] Re: IE - 'object does not support this property or method'

2008-08-21 Thread Michael Geary
You have a typo on line 68 of selectDate.html. "updatedDate" should be "updateDate". That's why updateDate is undefined in IE. BTW, here's a way you could write that bit of code without the repetition: var updateDate = [ splitDate[1], splitDate[2], splitDate[3],

[jQuery] Re: IE - 'object does not support this property or method'

2008-08-21 Thread Guy Fraser
pedalpete wrote: > I've written a bit of jquery code which I am absolutely amazed works > on both Safari and FF, but IE is giving me errors. > Not sure if it's same error, but this MS KB article may help: http://support.microsoft.com/kb/933873