Hey guys, I wonder what I'm doing wrong:
jQuery(function($){//document ready
var s_height = $("#search_form").outerHeight(); //height of searchform
alert(s_height) //0
Why is the height of my searchform 0 … it's at least 20px high. Any idea?
thank you
#search_formhave dynamically loaded content? Is there any height set in CSS? – user113716 Nov 7 '10 at 18:46"#search_form"visible at the time that the JS is run? jQuery can't get width/height from a hidden element. – Blair McMillan Nov 7 '10 at 18:47<div>. It gives the.outerHeight()correctly, at least in Safari. – user113716 Nov 7 '10 at 18:50#search_form– Sarfraz Nov 7 '10 at 18:57