The jQuery attribute with type and
value IN selector is used to filter out all elements in a page with a
specific type, and have the specified attribute with the specified value for
the attribute, the syntax for this selector is.
$("input[type=<type name>][<attribute name> = <attribute value>]")
In this post we shall see on how to use the jQuery attribute with type and value IN selector to select all text elements in a page which have the class attribute, and a value of RedText for the class.
$("input[type=<type name>][<attribute name> = <attribute value>]")
In this post we shall see on how to use the jQuery attribute with type and value IN selector to select all text elements in a page which have the class attribute, and a value of RedText for the class.
The following script lists out all the text elements in the page which have the attribute “class” with the value “RedText”
$("input[type=text][class='RedText']").each(function() {
alert('Attribute
with Type(text) and Value IN Selector:' + $(this).attr('id'));
});
The following script lists out all the text elements in a page which have the class attribute with value RedText, on click of the btnAttributeSelector button.
$('#btnAttributeSelector).click(function(event) {
The following script lists out all the text elements in a page which have the class attribute with value RedText, on click of the btnAttributeSelector button.
$('#btnAttributeSelector).click(function(event) {
event.preventDefault();
//
//
// Attribute -
Attribute with Type(text) and Value IN Selector
$("input[type=text][class='RedText']").each(function() {
alert('Attribute
with Type(text) and Value IN Selector:' + $(this).attr('id'));
});
});
Related Post
jQuery attribute Selectors
jQuery id selector
jQuery class selector
jQuery attribute exists selector
jQuery attribute value selector
jQuery attribute with type selector
jQuery attribute with type and value IN selector
jQuery attribute with type and value NOT IN selector
jQuery attribute with dropdown type selector
jQuery attribute with checkbox type selector
jQuery attribute selector Example
});
Related Post
jQuery attribute Selectors
jQuery id selector
jQuery class selector
jQuery attribute exists selector
jQuery attribute value selector
jQuery attribute with type selector
jQuery attribute with type and value IN selector
jQuery attribute with type and value NOT IN selector
jQuery attribute with dropdown type selector
jQuery attribute with checkbox type selector
jQuery attribute selector Example
No comments:
Post a Comment