Glen,

You need to append the "px" on the end.
A call to $("#right").height(); simply returns the integer, to set height,
according to the jquery-1.0.2 API, you need the "px":

<script>
$(document).ready(function() {

       var rightHeight = $("#right").height();  
    $("#left").height(rightHeight + "px");

});

</script>
-- 
View this message in context: 
http://www.nabble.com/Setting-Height-in-FF-tf2467829.html#a6880321
Sent from the JQuery mailing list archive at Nabble.com.


_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to