joe92 Posted May 10, 2011 Share Posted May 10, 2011 I am just wondering whether there is a better alternative to onmousemove? I have a function that I want be constantly running in the background of a couple of pages on my site. It is a few lines of code that sets the visibility of a div depending on whether a scrollbar is present on the screen. I am currently using onmousemove to run the funtion, but it often gives the impression of being a bit laggy so I was wondering whether there is an alternative out there? Cheers, Joe. Quote Link to comment https://forums.phpfreaks.com/topic/236001-js-function-to-constantly-run/ Share on other sites More sharing options...
KevinM1 Posted May 10, 2011 Share Posted May 10, 2011 Look into setInterval(). It will repeatedly run whatever code you specify at the interval you set. Quote Link to comment https://forums.phpfreaks.com/topic/236001-js-function-to-constantly-run/#findComment-1213340 Share on other sites More sharing options...
joe92 Posted May 12, 2011 Author Share Posted May 12, 2011 Ah yes of course! Cheers Quote Link to comment https://forums.phpfreaks.com/topic/236001-js-function-to-constantly-run/#findComment-1214470 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.