Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery get/select element by property value

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'.

like image 677
Silver Ringvee Avatar asked Jul 26 '16 16:07

Silver Ringvee


People also ask

How do you find the element based on a data attribute value?

Answer: Use the CSS Attribute Selector You can use the CSS attribute selectors to find an HTML element based on its data-attribute value using jQuery. The attribute selectors provide a very powerful way to select elements.

How do you select an element by attribute?

The [attribute|="value"] selector is used to select elements with the specified attribute, whose value can be exactly the specified value, or the specified value followed by a hyphen (-). Note: The value has to be a whole word, either alone, like class="top", or followed by a hyphen( - ), like class="top-text".

How get data attribute value in jQuery?

To retrieve a data-* attribute value as an unconverted string, use the attr() method. Since jQuery 1.6, dashes in data-* attribute names have been processed in alignment with the HTML dataset API. $( "div" ).

What jQuery syntax selects HTML elements by a specific attribute and its value?

jQuery [attribute|=value] Selector The [attribute|=value] selector selects each element with a specified attribute, with a value equal to a specified string (like "en") or starting with that string followed by a hyphen (like "en-us").


1 Answers

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.

like image 69
T.J. Crowder Avatar answered Oct 12 '22 14:10

T.J. Crowder