[jQuery] Re: Object doesn't support this property or method in IE

2009-09-16 Thread Ricardo
Hmm. No idea why it doesn't work in IE, but here are some general observations: You don't need the jQuery(function(){ part around the function. setTimeout(updateStatus, 2); // use the function object $(document).ready(updateStatus); //same here, pass the object, don't call the function. this

[jQuery] Re: Object doesn't support this property or method in IE

2009-09-16 Thread rupak mandal
I have face similar problem . Just check is there any html open or close tag missing in provStats.php. Thanks Rupak On Wed, Sep 16, 2009 at 12:16 PM, Ricardo ricardob...@gmail.com wrote: Hmm. No idea why it doesn't work in IE, but here are some general observations: You don't need the

[jQuery] Re: Object doesn't support this property or method in IE

2009-09-16 Thread knox203
Thanks Ricardo, your first revised block of code took away the error message in Internet Explorer. Doesn't look like the second block returned any of my data. I'm in the process of learning jQuery, so it's better that I play around with it anyways =) I'm still having a problem getting the data

[jQuery] Re: Object doesn't support this property or method in IE

2009-09-16 Thread knox203
Forget it, looks like it's working now with both of your replies, you guys rock! Ricardo, your code removed the java error in IE, thanks. Rupak, I went back and added html tags to my source file, and sure enough, IE is now returning the data like it's supposed to! Thanks again guys, - Adam