reduce complexity of ready further, and try manipulating DOM to make sure we're really ready

This commit is contained in:
Mike Sherov
2012-05-04 13:31:35 -04:00
parent f925c7a1c9
commit 714b8ffd2b
3 changed files with 7 additions and 7 deletions

View File

@@ -14,6 +14,7 @@ if ( document.attachEvent ) {
el.type = "text/javascript";
el.onload = function() {
jQuery( document ).ready(function() {
jQuery("body").append("<div>modifying DOM</div>");
window.parent.iframeCallback( true );
});
}

View File

@@ -8,6 +8,7 @@
<body>
<script type="text/javascript">
jQuery( document ).ready(function () {
jQuery("body").append("<div>modifying DOM</div>");
window.parent.iframeCallback( true );
});
</script>