how to execute JS after the page fully shown on safari

122 Views Asked by At

I got a JS problem, I want to excute a JS function after the whole page shown,the struct of the page such as:

<iframe id="i_frame" src="xxx.jsp"></iframe>

and the JS included in the xx.jsp:

...
<head>
...
<script type="text/javascript" src="yy.js"></script>
</head>

yy.js:

$(document).ready(function() {
    var i_fram = $(window.parent.document).find('[id="i_frame"]');
    $(i_fram).load(function() {
        alert('trigger!');
    });
});

this works well on PC(chrome), but on Iphone4s(IOS8.1, Safari), the alert trigger befor the page completely shown, even it alert befor the bottom-half of the page shown.I'd tried:"http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_ev_onpageshow", it still has this problem.

Is there something different between Safari's renderer and other browsers?

0

There are 0 best solutions below