Ugh.  Thank you!

Glen

On 10/18/06, nezza <[EMAIL PROTECTED]> wrote:

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 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/

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

Reply via email to