$('.content .right').width($(window).width() - (480));
$(window).resize(function(e) {
$('.content .right').width($(window).width() - (480));
});
Is there a better way to rewrite this more compactly? I want to call the function onload as well as on resize.
Thanks!