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
Checking for "width" for example:
if ($(element).prop("style")["width"] !== '') {...}