I need to find an element based on a specific css attribute. The css is applied inline and I can not use a class. Is there anyway to achieve this i
css
I think this is the cleanest solution. Say you want to find all elements where z-index has particular value:
$('*').filter(function () { return $(this).css('z-index') == 101 })