cannot get the width or height on load

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
  1. <img src="any.jpg"  id="get" />
  2. <div id="set">azer  rzetreter </div>

jquery
  1. var $h = $('#get').height();
  2. $('#set').height($h + 'px');

how can I make it that it works ?

thank you