Re: [jQuery] document ready not firing when loaded via ajax in IE

2007-03-19 Thread Marshall Salinger
Chris Domigan wrote: Marshall, I'm pretty sure you don't need to call document.ready() when using ajax. This function is there for dealing with a standard page load rather than dynamic content. If you are using .load() for instance, scripts are automatically evaluated after the html has

[jQuery] document ready not firing when loaded via ajax in IE

2007-03-18 Thread Marshall Salinger
Hey jQuerians, I am having trouble getting IE to recognize a script that is loaded with html via ajax. I tried both .get and .ajax and neither will work. I can't get a simple alert to fire when the content is loaded. Everything works as expected in FireFox. I have done a few searches in the

Re: [jQuery] document ready not firing when loaded via ajax in IE

2007-03-18 Thread david
checkout $.getScript() on visualjquery.com under the ajax tab Thank You, David SENT FROM MY TREO 650 HANDHELD -Original Message- From: Marshall Salinger [EMAIL PROTECTED] Subj: [jQuery] document ready not firing when loaded via ajax in IE Date: Sun Mar 18, 2007 11:24 am Size: 547

Re: [jQuery] document ready not firing when loaded via ajax in IE

2007-03-18 Thread Marshall Salinger
[EMAIL PROTECTED] wrote: checkout $.getScript() on visualjquery.com under the ajax tab Thank You, David SENT FROM MY TREO 650 HANDHELD -Original Message- From: Marshall Salinger [EMAIL PROTECTED] Subj: [jQuery] document ready not firing when loaded via ajax in IE Date: Sun Mar

Re: [jQuery] document ready not firing when loaded via ajax in IE

2007-03-18 Thread Chris Domigan
Marshall, I'm pretty sure you don't need to call document.ready() when using ajax. This function is there for dealing with a standard page load rather than dynamic content. If you are using .load() for instance, scripts are automatically evaluated after the html has been inserted. Chris