I noticed selectivizr does not support [attr*=] using jQuery.
Any ideas on how I could support the following selector in ie8?
a:not([class*="st-"])
I noticed selectivizr does not support [attr*=] using jQuery.
Any ideas on how I could support the following selector in ie8?
a:not([class*="st-"])
Quote from w3schools:
Note: IE8 and earlier do not support the :not selector.
I believe that's the only bit that doesn't work in IE8.
The [attribute*=value] selector is supported in all major browsers.
Note: For this selector to work in IE8 and earlier, a
<!DOCTYPE>
must be declared.
So if you have Selectivizr to fix the :not()
part, I don't see why it shouldn't work.