I need to select elements in jquery, attibute values of which do not end with a specified substring.
It must be an equivalent to "match all elements but those that end with a given substring in that attribute".
So that e[a!@#=finstr] matches e, e a="finstring" etc, and does NOT match e a="somethingfinstr", e a="finstr".
Help, thanks.