Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i Want to show image into onload event in web pages so give ex for it or refrence link
Posted

can you brief in details or with code
 
Share this answer
 
Comments
Shubhashish_Mandal 25-Jun-13 4:52am    
not an answer.
pravin from aurangabad 25-Jun-13 4:56am    
thanx but i want show image like popup on page onload event for more see like www.resonance.ac.in
HTML
<html>
<head>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
  $("img").load(function(){
    alert("Image loaded.");
  });
});
</script>


<body>
<img src="YourImageName.jpg" width="304" height="236">
</body>
</html>
 
Share this answer
 
v2

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