Page 1 of 1

facebook application blocking help

Posted: Tue Sep 25, 2007 1:28 am
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

Posted: Tue Sep 25, 2007 9:48 am
by Wladimir Palant
This should work:

Code: Select all

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