jQuery resize width on firefox
Posted
by LM35DT
on Stack Overflow
See other posts from Stack Overflow
or by LM35DT
Published on 2010-05-12T17:59:20Z
Indexed on
2010/05/13
1:44 UTC
Read the original article
Hit count: 236
I'm doing some experiments with jquery n widths for a liquid column and I'm not sure why it isn't working on firefox. It works fine on IE6,7,8 Chrome, Opera(sluggish). I found some articles about firefox not recognizing the .resize attribute but no explanation/solution =\
$(document).ready(function(){
$(midCol).width((window,$(window).width()) - 470)
$(window).resize(function(){$(midCol).width((window,$(window).width()) - 470)
})
});
© Stack Overflow or respective owner