CSS Sizing jQuery

by bseth99

HTML

<div id="box">I am a box</div>
<div id="box2">I am another box</div>

CSS

#box {
    border: 1px solid green;
    height: 100px;
    width: 50%;
}

#box2 {
    border: 1px solid red;
}

JavaScript

$( '#box2' ).width( $( '#box' ).css( 'width' ) );
$( '#box2' ).height( $( '#box' ).css( 'height' ) );

$( document.body ).append( $( '#box' ).css( 'width' ) );
$( document.body ).append( $( '#box' ).css( 'height' ) );