I have a bootstrap modal that is used for comments. The comment form is appended at the bottom of the list of comments.
I want this modal to scroll to the bottom of the list, when it is opened, if there is more than 2 or 3 comments. I already have this slide plugin installed
http://jesseprice.com/jquery-slide-to-plugin/
Ideally i would like to be able to use that plugin. I have setup a Fiddle with my current ideas in it: http://jsfiddle.net/D2RLR/3275/
Here is my current jQuery
$('.slideto').slideto({
target : '.new-comment-entry',
speed : 'slow'
});
I have gotten this to work in the regualr browser window, but it wont attach to the modal.
If anyone wants a challenge, here ya go ;)