Click here to Skip to main content
15,891,621 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
$(window).load (function() is not working when i redirected this page from other page using anchor tag.... my page is not loading..i have to use this only not document.ready .. thanks in advance





XML
<!DOCTYPE html>
<html>
<head>

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<script>


$(window).load (function() {

//code goes here...

});//doc ready


</script>
<style>
*{padding:0; margin:0;}
ul {}
ul li {float:left; list-style:none; position:relative; }
ul li a.next {position:absolute; left:100px;}
ul li a.previous{position:absolute; left:0px;}
ul li a.startover{position:absolute; left:200px;}
</style>
</head>
<body>
<div>
<ul>
</ul>
</div>
<script>
</script>
</body>
</html>
Posted
Comments
bbirajdar 24-Apr-13 2:49am    
Why not Document.ready ???

Write this after the html ( all design code )

XML
<script>


$(window).load (function() {

//code goes here...

});//doc ready


</script>
 
Share this answer
 
Would you please specific on the comment "my page is not loading". Does it mean that the redirected page itself not loaded or your (window).load didn't work. Please provide more details?

Thanks,
Siju.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900