but dont Hide the <a class="ss">ss</a><div class="pg">
<a href="..">xx</a>
<a class="ss">ss</a>
</div>
How can I hide with this...
How can I hide with this...
I want to Hide the <a>xx</a> in
- Gingerbread Man
- Posts: 1339
- Joined: Fri Aug 12, 2011 5:28 am
Re: How can I hide with this...
You can't block based on innerHTML (“xx”).
You can use an attribute instead, e.g.
Or you can block based on DOM placement, e.g.
You can use an attribute instead, e.g.
Code: Select all
example.org##a[href*="part of the URL"]
Code: Select all
example.org##div.pg>a:first-of-type
Re: How can I hide with this...
thanks! I got it.