All pastes #132177 Raw Edit

Something

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