All pastes #2070023 Raw Edit

Something

public text v1 · immutable
#2070023 ·published 2011-05-27 06:24 UTC
rendered paste body
// ==UserScript==
// @name           Scroll Down Damn It!
// @namespace      userscripts.org
// @description    Automatically scroll down the Eternia Games shoutbox widget. Tested and working on Google Chrome
// @include        http://forum.eterniagames.com/*
// @match 		   http://forum.eterniagames.com/*		
// @author 		   CanidDog/Foxhound22003
// @version        0.2.0
// ==/UserScript==
var CHAT_BOX = document.getElementById('cybcb_messagearea');
window.onLoad = setInterval(scrollDownDamnIt,500); 
function scrollDownDamnIt() {CHAT_BOX.scrollTop = CHAT_BOX.scrollHeight;}