I have been developing a web application on XP and FF (with occasional IE checks through IE 8), but today when I deployed it to a WS 2003 site, running IE 7, my jQuery code to dynamically size divs doesn t execute, and even stating explicit div sizes (e.g. width: 95%
) doesn t seem to work.
I m doing this via VPN and Remote Desktop, and at this point have no contact with support on the remote site. This is a long shot, but does anyone have any suggestions for me to try? I know Javascript is enabled, as I get a test alert box from outside my jquery code. My jQuery code is as follows, in the head tag:
<script src="/jQuery/jquery-1.3.2.js" type="text/javascript"></script>
<script type="text/javascript">
function resizeChildren() {
var h = $(window).height() - 70;
var w = $(window).width() - 210;
$("#mainContent").css("width", w);
$("#container").css("height", h);
$("#leftMenu").css("height", h - 20);
$("#mainContent").css("height", h - 20);
$("#ctl00_mainContentPlaceHolder_grid_GridData").height(h - 80);
}
$(document).ready(function() {
resizeChildren();
});
$(window).resize(function() {
resizeChildren();
});
</script>
EDIT:
I should have included the jQuery link before. I m sure someone more astute than me would have noticed the leading /
, which caused the browser to look in the site root, not in my application.