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
Why not just:
var $el = $('element[style*="width"]');
And then you can test it with:
if ( $el.length ) { //... }