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
facebook application blocking help
This should work:
Code: Select all
facebook.com##div[id^="box_app"]:not(#box_app_<number1>):not(#box_app_<number2>)