jQuery(window).load() not working properly in IE, especially in IE 8 and below. I need to call one method after loading the window completely.
But in IE the window shows after executing the function given in jQuery(window).load() also.
.
.
.
.
</body>
<script language="javascript">
jQuery(window).load(function(){
renderEditNView();
});
</script>
</html>
Even an alert within the load method shows before the window loads. How will I fix it?