| View previous topic :: View next topic |
| Author |
Message |
tech_moon
Joined: 22 Aug 2009 Posts: 45
|
Posted: Thu Aug 27, 2009 10:38 am Post subject: how to load images before the scripts |
|
|
how to load images before java scripts run in the page
i got some info abt onload function but i cannot implement
so please post me the java script to load images before page loads |
|
| Back to top |
|
 |
vani
Joined: 12 May 2008 Posts: 179
|
Posted: Thu Aug 27, 2009 12:20 pm Post subject: |
|
|
Hi,
We can call the script on body onload ,for this you use the below syntax
--------------------------------------------------------------------
<body onload="return test()">
</body>
<script>
function test()
{
//your script
}
</script>
--------------------------------------------------------------------
All the best  |
|
| Back to top |
|
 |
|