After loading an internal div (#book_table) via ajax, I want to resize the width of the body to accommodate the larger content.
var new_width = parseInt($('#book_table').css('width'))+407;
$('body').width(new_width);
Works in FF and Safari, but fails in IE with "Invalid argument". In the unpacked jQuery 1.3.1, it's line 1049:
elem[ name ] = value;
Passing a literal value, however, works in IE:
$('body').width(1200);