cannot get the width or height on load
I want to get an element height onload to apply the same height to another element but I get always 0
html
- <img src="any.jpg" id="get" />
- <div id="set">azer rzetreter </div>
jquery
- var $h = $('#get').height();
- $('#set').height($h + 'px');
how can I make it that it works ?
thank you