I have a modal window Bootstrap with dynamic height (more than height of screen). How can I scroll the window to bottom programmatically? I tried to do this:
$('#modal').animate({ scrollTop: $('#modal').height() }, 500);
But variable $('#modal').height() is not changing while I'm resizing window. Any ideas?