When I use a style sheet definition like this on HTML page scope
#sideBar { float: left; width: 27.5%; min-width: 275; ... }
the f
var width = ( 100 * parseFloat($("#sideBar").css('width')) / parseFloat($("#sideBar").parent().css('width')) ) + '%';
reference get CSS rule's percentage value in jQuery
here is the fiddle http://jsfiddle.net/jSGTs/