I want to know if there is a way to hide parent element of an identified element.
for example:
<div>
<span id="abx">some garbage content</span>
<div>other garbage containers not having any class or id</div>
</div>
The custom filter of AdBlockPlus to select abx
will be:
##span#abx
But how to select its parent element? because we need to hide all siblings of identified element.