Hide Elements with div and input

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
Rooky

Hide Elements with div and input

Post by Rooky »

I have problems to hide this div

Code: Select all

<div class="fs_2"><input type=hidden name="other_128-4331890"></table></div>
My tested some combination but it doenst work, for exampe
#div(class=fs_2)input(name=other_*)

Someone have an idea?
Rooky

Post by Rooky »

I have found a functional code

Code: Select all

example.com#div(class=fs_2)
but i favored a code which inlcude the input elment with name=other_*
Dr. Evil
Posts: 194
Joined: Fri Sep 08, 2006 3:51 pm

Post by Dr. Evil »

this will only hide the input, not the div itself (you can't hide something by its children):

Code: Select all

example.com##div.fs_2 input[name^="other_"]
Locked