jQuery Rounding

by Marventus

HTML

<div id="ref"></div>

CSS

body {
    height: 106px;
    width: 106px;
}
#ref {
    height: 20%;
    width: 20%;
}

JavaScript

var div = $("#ref"); 
console.log( div.height(), div.width() );
console.log( div.css("height"), div.css("width") );