Scroll to element inside modal window
问题 I have a modal window and need to be able to open the modal and then scroll the user to a specific spot in the modal. I am getting the modal contents with AJAX to a PHP script. eg mypage.php?loc=someid In the PHP script I have this JS to do the scrolling: $( document ).ready(function() { $('.modal-body').animate({ scrollTop: $("#<?php echo $_GET['loc'];?>").offset().top }, 1000); }); in the PHP page is some HTML like this: <div id="someid"></div> My content loads correctly but the amount of