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
try $("#chat_content").scrollTop($("#chat_content").get(0).scrollHeight);
Another way is to just wrap the internal content in a div and then just change your ".height" call to
$("#chat_content").scrollTop($("#chat_content div").height());
Get the scrollHeight property from the underlying DOM element:
$("#chat_content").scrollTop($("#chat_content").get(0).scrollHeight);