I need to check whether an element has a defined css property given to it, but I\'m having some trouble using the jQuery.css() function.
The property I\'m looking fo
Use .attr to check the style attribute.
.attr
style
if(base.$element.attr('style').length > 0) { //... }
If you care about the width, then
if(base.$element.attr('style').indexOf('width') !== -1) { //... }