furycd001

webrowser

alt text

Did you know that you can use javascript to automatically scroll to the bottom or top of any webpage. All you need is the code below & firefox..

var scroll = setInterval(function(){ window.scrollBy(0,8000); }, 2000);

To use this piece of javascript I simply opened up the browsers inspector window by pressing “CTRL+SHIFT+C”, clicked on “CONSOLE” & then pasted in the javascript to the box at the bottom. With the code pasted into the box I then pressed enter & left the browser to do it thing. When finshed I closed the inspector & began looking for what it was I wanted to find.

With the above javascript you can change the numbers at the end to scroll further or less & up or down....


#web #webpage #html #javascript #webrowser #firefox #inspector #console