I'm want to create a selector to find elements which have attributes starting with a string. At this point, I'm assuming this selector does not exist. Do I need to extend the selector capabilities? Extending jQuery’s selector capabilities by James Padolsey
I need to express something like the Attribute Contains Prefix Selector [name|="value"], but instead of matching "value", I need to match against the name of the attribute, and not the value of the attribute.
<tag data-plugin-option1="val1" data-plugin-option2="val2" />
I'd like to end up with a syntax like this:
$('tag(:attr|="data-plugin")') which should find the element tag because it has at least one element that starts with data-plugin
.data()parses these automatically, although it might have been just in HTML 5, I can't remember right now – Pekka 웃 Sep 29 '11 at 19:32