jQuery get/select element by property value

13,569

No, there isn't anything exposed at the selector level that can select by property value, just (as you know) attribute value.

Some properties are reflections of attributes, which means that setting the property sets the attribute, which allows you to use attribute selectors. For instance, an input element's defaultValue property is a reflection of its value attribute (which its value property is not).

Otherwise, you select by what you can and use filter to filter the resulting list to only the elements you actually want.

Re your edit:

For example, I'd set a property using jQuery like this:

$('#foo').prop('my-property', 'value');

No, there's no way to select by that property directly, you'd need something like my filter suggestion above:

var list = $("something-that-gets-you-close").filter(function() {
    return this["my-property"] == "value";
});

You might consider using data-* attributes instead:

$("#foo").attr("data-my-property", "value");

then

var list = $("[data-my-property='value']");

to select it (the inner quotes are optional for values matching the definition of a CSS identifier). Note that attribute values are always strings.

Beware: There's a persistent misconception that jQuery's data function is a simple accessor for data-* attributes. It is not. It manages a data cache associated with the element by jQuery, which is initialized from data-* attributes but disconnected from them. In particular, .data("my-property", "value") would not let you find that later via a [data-my-property=value] selector.

Share:
13,569
Silver Ringvee
Author by

Silver Ringvee

Analytics & A/B Testing Expert in digital analytics and user behavior analysis. Running advanced A/B Experiments using Optimizely, VWO and Google Optimize. Translating data to insights with Google Analytics, Google Datastudio and more. Front End Making great ideas happen using modern web technologies. Always open to new opportunities! Daily use: Javascript, JQuery, HTML5, CSS3, Python, PHP5, MySQL, WordPress, Twitter, Bootstrap and a few more.

Updated on June 11, 2022

Comments

  • Silver Ringvee
    Silver Ringvee almost 2 years

    Is there a way to get/select an element by it's property value, just as it is possible with the attribute values:

    $('[attribute="value"]')
    

    For example, I'd set a property using jQuery like this:

    $('#foo').prop('my-property', 'value');
    

    and then I'd like to find an element which has property 'my-property' and it has value 'value'.