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
Something like:
$('selector').each(function() { if($(this).attr('style').indexOf('font-weight') > -1) { alert('got my attribute'); } });