2

Is there a capture the onload event when dynamically adding a script tag with JavaScript in IE?

The code below works in FireFox and Chrome but not in IE:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>

</body>
</html>
<script type="text/javascript" language="javascript">

    var elemScript = document.createElement("script");
    elemScript.onload = function() {
        $("body").html("<div>jQuery Loaded !</div>");
    };
    elemScript.type = "text/javascript";
    elemScript.src = "script/jquery.js";

    document.getElementsByTagName("head")[0].appendChild(elemScript);

</script>
Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Kenneth J
  • 4,846
  • 11
  • 39
  • 56

1 Answers1

3

Script tags in IE have use the onreadystatechange event instead of onload: http://unixpapa.com/js/dyna.html

Annie
  • 6,621
  • 22
  • 27