Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
7  
1  
All of the docs can be found at api.jquery.com. There's even a search function. (although the current question could've been answered by looking at the only match in a "find in document" search for ~= at the index page.) – David Hedlund Sep 13 '12 at 8:08
2  
7 downvotes? Seems like a valid question to me – Curt Sep 13 '12 at 8:16
1  
Alright, When i google ~=, it returns nothing.. anyway thanks guys. All I want is the answer. – tipsywacky Sep 13 '12 at 8:31

closed as not constructive by Rory McCrossan, thecodeparadox, David Hedlund, Mihai Iorga, AVD Sep 13 '12 at 9:38

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.

5 Answers

up vote 3 down vote accepted

When the equal sign in an attribute selector is preceded by a tilde ( ~ ), that means that the selector will match if the value listed is any one of the space-separated values of the given attribute. So the first rule's selector, *[class~="urgent"] , will match any of the following elements:

<p class="very urgent really">
<table class="urgent">
<ul class="not urgent">
<pre class="not terribly urgent but still worth knowing">

Source: http://meyerweb.com/eric/articles/webrev/200008b.html


jQuery documentation for the tilde selector can be found here:

http://api.jquery.com/attribute-contains-word-selector/

share|improve this answer

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.

share|improve this answer

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 ;)

share|improve this answer

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/

share|improve this answer

Comes under attribute. jQuery custom attribute selector. attribute-contains-word-selector

http://api.jquery.com/attribute-contains-word-selector/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.