Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using jQuery, I want to select a link that contains exactly some kind of text. For example:

<p><a>This One</a></p>
<p><a>"This One?"</a></p>
<p><a>Unlikely</a></p>

I have tried this:

$('a:contains("This One")')

But it picks the first AND the second link. I just want the first link, which contains exactly "This One". How can I do that?

share|improve this question

6 Answers

up vote 19 down vote accepted

You can do this:

$('a').filter(function(index) { return $(this).text() === "This One"; });

Reference: http://api.jquery.com/filter/

share|improve this answer
Why === and not == ? – Endy Tjahjono Jul 13 '11 at 3:42
Either would work in this case, but I tend to use === because it matches on value and type, i.e. it won't coerce the types. stackoverflow.com/questions/359494/… – FishBasketGordo Jul 13 '11 at 3:46
You missed return. I have to change it to function(index) { return (this.text === 'This One') } – Endy Tjahjono Jul 13 '11 at 3:54
Whoops. Good catch. I edited my answer. – FishBasketGordo Jul 13 '11 at 3:57

A coworker of mine extended jQuery with a function to do this:

$.expr[':'].textEquals = function(a, i, m) {
    return $(a).text().match("^" + m[3] + "$");
};

The result is that you can select something by exact text this way:

$("label:textEquals('Exact Text to Match')");

This makes it easy, since you don't have to remember the exact syntax each time. His entire post is here: jQuery Custom Selector for selecting elements by exact text :textEquals

share|improve this answer

had to modify Nariman's solution to be:

$.expr[':'].textEquals = function(a, i, m) {
    var match = $(a).text().match("^" + m[3] + "$")
    return match && match.length > 0;                                                                                                                                                                                                                                            
}

Otherwise didn't work on chrome (Linux)

share|improve this answer

I was using the extension

$.expr[':'].textEquals

But I have found that the implementation no longer works with jQuery 1.7 (apparently a change in Sizzla.filter). After struggling for some time to make it work I have simply written a jQuery plugin to accomplish the same.

$.fn.textEquals = function (text) {
    var match = false;
    $(this).each(function () {
        if ($(this).text().match("^" + escapeRegex(text) + "$")) {
            match = true;
            return false;
        }
    });
    return match;
};

Use:

$(".ui-autocomplete li").textEquals('Exact Text to Match');

Just wanted to share, in case someone else runs into this (,

share|improve this answer

How to get the selected value from a drop-dwon:

$.fn.textEquals = function (text) {
    var match = false; 
    var values="";
    $(this).each(function () {
        if ($(this).text().match("^" + text + "$")) {
            values=$(this).val();
            match = true;
            return false;
        }
    });
    return values;
};

console.log($("option").textEquals("Option One")); - it will return the value of the drop-down

share|improve this answer

Unfortunately $.expr[':'].textEquals doesn't handle punctuation such as "(1) High" as a string.

share|improve this answer
did you try @Alvis's answer? Also, FYI, your "answer" is more suited to a comment on someone elses answer. I imagine you probably cannot do that till you get more reputation - but If you remember to change that and delete this answer when you can, it would be preferable. – Zach L Apr 18 at 22:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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