I'm loading content into a div with the jquery .load. What happens is some how the rest of the page ignores the content's height. I'm loading it like so
jQuery(document).ready(function ($) {
$('#loader_container').load('brigham_overview.aspx');
});
This is the page http://www.brighamandwomens.org/Patients_Visitors/pcs/rehabilitationservices/mock/overview.aspx
You can see how it overflows the bottom and the e-mail link it way way at the top over the Take a Look tile and it should be at the very bottom.
I'm wondering if there's maybe a way to have the .load happen and then somehow after it's loaded do something with the script to assign the "loader_container" the height of the wrapper div in the loaded content?
That or is there a way to somehow have the script run before the rest of the body is loaded?