does anyone know how to automatically jump to the bottom of a scrollable area by event in jquery ( or even javascript if no easy jquery solution)?
regards
does anyone know how to automatically jump to the bottom of a scrollable area by event in jquery ( or even javascript if no easy jquery solution)?
regards
Edit:
jQuery 1.6 introduced
.prop
and changed the meaning of.attr
thus$("#someDiv").attr("scrollHeight")
won't work anymore.Need to be changed to:
$("#someDiv").prop("scrollHeight")
Reference.
won't work in recent jQuery versions. You will need to resort to:
mm.prop("scrollHeight")
does the trick (for jQuery 1.6 and forward).