You can combine Attribute Selectors to get elements more specifically. AttributeMultiple selector would matches elements that match all of the specified attribute filters.
$('[attributeSelector1][attributeSelector2][attributeSelectorN]')
attributeSelector
is any Attribute Selector like [name]
,[name="value"]
,[name~="value"]
Finds all list item elements that have an id
attribute and whose title attribute ends with script
and hightlights the element.
Try now