delay in javascript
-
Hi friends I have one aspx page, in which images are showing continuously. on mouse over i want to delay this process i need delay in javacript. thanks
-
Hi friends I have one aspx page, in which images are showing continuously. on mouse over i want to delay this process i need delay in javacript. thanks
use window.setTimeout
-
Hi friends I have one aspx page, in which images are showing continuously. on mouse over i want to delay this process i need delay in javacript. thanks
If you want a pause, you need to turn the images off an one in your move over and mouse out events.
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.
-
Hi friends I have one aspx page, in which images are showing continuously. on mouse over i want to delay this process i need delay in javacript. thanks
<script language=javascript> function loadPage() { // Write your functionality } // This function is resposible for calling loadPage after time interval (given as second parameter) setTimeout("loadPage()",1000); </script>
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... " Check My Blog