AutoScroll admin interface
Posted: Mon Sep 21, 2015 8:34 am
Hi all
I have a web interface displayed on a monitoring system in the office and the defined services now scroll off the page. does anyone know a good piece of software that will scroll up and down the page automatically.
the only solutions i have found is editting the html code. if that solution is viable for nagios can someone point me in the right direction to adding this code to the web interface
courtesy of http://stackoverflow.com/questions/8107 ... and-repeat
Thanks
Paul
I have a web interface displayed on a monitoring system in the office and the defined services now scroll off the page. does anyone know a good piece of software that will scroll up and down the page automatically.
the only solutions i have found is editting the html code. if that solution is viable for nagios can someone point me in the right direction to adding this code to the web interface
Code: Select all
$('html, body').animate({ scrollTop: $(document).height() - $(window).height() }, 1000, function() {
$(this).animate({ scrollTop: 0 }, 1000);
});Thanks
Paul