Hello,
I have some very simple code:
$(document).ready(function(){
$('#module_body_News').height(0);
});
This works fine in Firefox but not in IE.
Why?
Hello,
I have some very simple code:
$(document).ready(function(){
$('#module_body_News').height(0);
});
This works fine in Firefox but not in IE.
Why?
Try this:
$(document).ready(function()
{
$('#module_body_News').css('height', 0);
});