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
You could use the attribute flag and use contains if you know the specific format that it's in.
$("[style*='position']")
This would find all the elements that define the position css attribute.