Is there a way to select an element without any attributes, regardless of what attributes are present in other elements?
For example:
<p class="a" id="para1">This is paragraph 1</p>
<p id="para2" class="a b c d e f" >This is paragraph 2</p>
......
......
<p>This is paragraph 3</p> <!-- target this p tag with no attribute -->
<div>
<p class="inside-div" id="para5">This is paragraph</p>
</div> <!-- target this div tag with no attribute-->