$("#chat_container").css('overflow', 'hidden'); $("#chat_container").scrollTop($("#chat_container")[0].scrollHeight); $("#chat_container").css('overflow', 'auto');It seems that the css is executing before the scrolltop, even with a delay() added to setting overflow back to auto. Without setting overflow back to auto, the scroll works, but users can't scroll because the overflow is now hidden...any ideas would be greatly appreciated
PS: Any attempts to find the location of scrollTop will be useless because android has a bug where it is always 0.