If you have the following element:
and the css is:
span {width:50px!importa
use element.style.width
element.style.width
sample:
$(function(){ alert($("span")[0].style.width); });