I want an id on a page I'm developing to get bigger if a certain
condition is met, however, I can't get the code to work... can anybody
fix this up for me?

$(document).ready(function(){
if(document.body.offsetWidth > 1024 ){
$("#wrapper").css(function()
{
$(this).animate
({width: "1024px"}, 1000);
});
}
});

this is my first time really working with jQuery, so any help would be
great.  Thanks!

P.S. the code works fine without the if(...) and with .click instead
of .css, but i want it to be automatic.

Reply via email to