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. 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. 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 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
Archived
This topic is now archived and is closed to further replies.