Side navigation
#6406 closed bug ()
Opened April 07, 2010 10:04AM UTC
Closed November 11, 2010 11:09PM UTC
when append(),html()...the IE6 will die
Reported by: | kevein2008 | Owned by: | kevein2008 |
---|---|---|---|
Priority: | low | Milestone: | 1.4.3 |
Component: | manipulation | Version: | 1.2.6 |
Keywords: | IE6 die | Cc: | kevein |
Blocked by: | Blocking: |
Description
this is the function
function GetHTML(ucPath,data,context)
{$.ajax({url: "/ajax.ashx?a=ucPath&b=data,
cache: false,
success: function(html)
{
$("#"+context).html(html);
}
});
}
in the page
<script type="text/javascript" language="javascript">
$("document").ready(function()
{
GetHTML('param1','param2','Div1');
GetHTML('param1','param2','Div2');
GetHTML('param1','param2','Div2');
});
</script>
The problem is that when i refresh the page when the page is loading,the IE is die(just IE6).If I refresh ths page witch was load completed,there is no error.
Could you reduce this to a test case on jsFiddle? Thanks!