[jQuery] Getting a div with scroll bar to stay scrolled down

2007-10-18 Thread Eric Boo
Sorry if this is a repost, as I can't seem to find my message anywhere... Hi all, I have a div that will refresh itself and the scroll bar just won't stay down. The solution I've found is: var objDiv = document.getElementById("divname"); objDiv.scrollTop = objDiv.scrollHeight;

[jQuery] Getting a div with scroll bar to stay scrolled down

2007-10-18 Thread Eric
Hi all, I have a div that will refresh itself and the scroll bar just won't stay down. The solution I've found is: var objDiv = document.getElementById("divname"); objDiv.scrollTop = objDiv.scrollHeight; This doesn't work: $('#divname').scrollTop = $('#divname').scrollHeight; The

[jQuery] Getting a div with scroll bar to stay scrolled down

2007-10-17 Thread Eric
Hi all, I have a div that will refresh itself and the scroll bar just won't stay down. The solution I've found is: var objDiv = document.getElementById("divname"); objDiv.scrollTop = objDiv.scrollHeight; This doesn't work: $('#divname').scrollTop = $('#divname').scrollHeight; T