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
Matthew you can check if style attribute is undefined or not
var attr = $(this).attr('style'); if (typeof attr !== 'undefined' ) { }