I also get an error with IE7 on a load() command.
The script debugger points to line 22 (1.2.min.js) :
;if(value!=undefined)elem[name]=value;
I wonder if IE like the absence of question mark ??
-----Original Message-----
From:
jquery-en@googlegroups.com [mailto:jquery-en@googlegroups.com] On
Behalf Of Mike Chabot
Sent: jeudi 13 septembre 2007 18:18
To:
jquery-en@googlegroups.comSubject: [jQuery] Re: load() with each(): FF is OK, IE not
It looks like the .load function broke when 1.1.4 came out, and it is still
broken in 1.2. Maybe the way the function works changed, but I cannot find
any description of the change in the documentation.
The below simple test works fine in Firefox. However, it does not work in
MSIE 7. No JavaScript error is thrown that I can see, and the request to get
the content is actually made, it just doesn't update the div tag.
Downgrading to 1.1.3.1 fixes the problem.
<script type="text/javascript">
$(document).ready(function() {
$("#feeds").load("getContent.cfm");
});
</script>
<div id="feeds"></div>
-Mike Chabot