Selector starting with [name^="value"] selects elements that have the specified attribute with a value beginning exactly with a given string.
Is there a negative of this like so:
[name!^="value"]
which selects elements that have the specified attribute with a value NOT beginning with a given string.