Ticket #6406 (closed bug)
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 |
| Blocking: | Blocked by: |
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.
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

Could you reduce this to a test case on jsFiddle? Thanks!