I need a jquery ninja to help me find the best jquery selector to solve my need:
// pseudo jquery selector:
var match = $('table[facet=ProductCateogory or ProductCatagoryTier2 or DocumentCategory]')
// this would not match:
<table facet="EiaBrand"
// this would match:
<table facet="ProductCategory"
I think you have to specify them separately using the multiple selector
,: