Opened 16 years ago
Closed 16 years ago
#1332 closed bug (fixed)
script evaluation not working properly in ie6
Reported by: | db | Owned by: | john |
---|---|---|---|
Priority: | major | Milestone: | 1.1.4 |
Component: | ajax | Version: | 1.1.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
While using this function:
$.ajax({
type: "POST", url: page, data: args, dataType: "html", ... etc.
I found that ie6 does not evaluate any scripting included in the returned data.
like: --snip--
<script type="text/javascript">alert('loading!');</script><h1>some other html</h1>
--snip--
fails completely in ie6 (6.0.2900.2180). This script evaluation does happen with other browsers; just not ie6.
-Thanks
-Dan Bryant
Change History (4)
comment:1 follow-up: 2 Changed 16 years ago by
comment:2 Changed 16 years ago by
Replying to pedromello:
same occurs on IE7
Apparently IE6/7 can't correctly evaluate the regexp in find method to locate the script tags. So I've coded a temporary workaround, to be called after DOM is updated.
function extractScripts(data) {
if ($.browser.msie) {
var re = new RegExp('<script[>]*>([
S
s]*?)<\/script>','im'); var rs = data.match(/<script[>]*>([\S\s]*?)<\/script>/img);
var parse = $.map(rs, function(tag) {
return re.exec(tag).pop();
});
$(parse).each(function(k,v) {
jQuery.globalEval(v);
});
}
}
comment:3 Changed 16 years ago by
Milestone: | 1.1.3 → 1.1.4 |
---|---|
need: | Review → Test Case |
Owner: | set to john |
Version: | 1.1.2 → 1.1.3 |
same occurs on IE7