Re: [jQuery] $().load() can not load script in a page with IE

2007-02-08 Thread Ronald Haring - Tripolis
Weird, this works for me in IE6 on xp/sp2 test.html: html script src=jquery-1.1.1.js /script script $(document).ready(function() { $(#load_here).load(test2.html); }); /script body div id=load_here /div /body /html test2.html: html body script alert(Hello!!!); /script h1 Hello/h1 /body /html

[jQuery] $().load() can not load script in a page with IE

2007-02-07 Thread Thinker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi All, I just study jQuery for a couple of days. jQuery is very nice way to improve readability of javascript code and more effective programming style. By the way, I find jQuery does not run script in a page when I load a page with $.load() with IE.

Re: [jQuery] $().load() can not load script in a page with IE

2007-02-07 Thread John Resig
Hi - Can you provide an example of what's failing? We'll need some sample code in order to debug what's going on. --John On 2/7/07, Thinker [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi All, I just study jQuery for a couple of days. jQuery is very nice way to

Re: [jQuery] $().load() can not load script in a page with IE

2007-02-07 Thread Thinker
John Resig wrote: Hi - Can you provide an example of what's failing? We'll need some sample code in order to debug what's going on. --John test.html will load test2.html and supposed to run alert(Hello!!!). But, it is not actually (in IE). test.html {{{ html script