facebook application blocking help

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

facebook application blocking help

Post by facebook »

I want to do something like
block all elements with id starting with #box_app except #box_app_<number1> and #box_app_<number2> and so on
the first part I could do with facebook.com#div(id^=box_app) but i cant figure out the second part

help would be appreciated
thanks
Wladimir Palant

Post by Wladimir Palant »

This should work:

Code: Select all

facebook.com##div[id^="box_app"]:not(#box_app_<number1>):not(#box_app_<number2>)
Locked