All pastes #132158 Raw Edit

Anonymous

public javascript v1 · immutable
#132158 ·published 2006-08-15 04:13 UTC
rendered paste body
function ScrollDown(){  document.getElementById('chatbox').scrollTop = (document.getElementById('chatbox').scrollHeight - document.getElementById('chatbox').offsetHeight);}function StartScroll(){  ScrollDown = setInterval("ScrollDown();", 10);}if(StartScroll()){  if(document.getElementById('chatbox').scrollTop == (document.getElementById('chatbox').scrollHeight - document.getElementById('chatbox').offsetHeight))    setTimeout("clearInterval(ScrollDown)", 1000);}