i have a div with height:100px and overflow:auto the content is dynamic.
i want scroll the div in the bottom
i tried with
$(\"#chat_content\").sc
Get the scrollHeight property from the underlying DOM element:
$("#chat_content").scrollTop($("#chat_content").get(0).scrollHeight);