I saw this $("a[rel~='single']") somewhere. What is the operator ~= in jquery?
Does anyone know where the documentation for that is?
Thanks in advance.
|
I saw this Does anyone know where the documentation for that is? Thanks in advance. |
||||
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
Source: http://meyerweb.com/eric/articles/webrev/200008b.html jQuery documentation for the tilde selector can be found here: |
|||
|
|
|
Attribute Contains Word Selector [name~="value"] This selector matches the test string against each word in the attribute value, where a "word" is defined as a string delimited by whitespace. The selector matches if the test string is exactly equal to any of the words. |
|||
|
|
|
it is a "attribute contains word" selector. It means that $("a[rel~='single']") will select every tag containing the "single" word in the rel attribute. http://api.jquery.com/attribute-contains-word-selector/ Cheers ;) |
|||
|
|
|
Selects elements that have the specified attribute with a value containing a given word, delimited by spaces. See:: http://api.jquery.com/attribute-contains-word-selector/ |
|||
|
|
|
Comes under attribute. jQuery custom attribute selector. attribute-contains-word-selector |
|||
|
|
~=at the index page.) – David Hedlund Sep 13 '12 at 8:08