I have a chat application that automatically scrolls to the bottom of the div when a new message is received. This works fine unless you're scrolled up to read the log, as when a new message is received it jumps back to the bottom. I need it to scroll only if the scroll position is already at the bottom and not sure how to do it.
var scroll = $("div#log").prop("scrollHeight") - $('div#log').height()
$("div#log").scrollTop(scroll)
Any help/suggestion would be welcome and appreciated :)