Multiple Attribute Selector [name="value"][name2="value2"]

jQuery

Multiple Attribute Selector [name="value"][name2="value2"]


attributeMultiple selector

Description: Matches elements that match all of the specified attribute filters.

  • version added: 1.0jQuery( "[attributeFilter1][attributeFilter2][attributeFilterN]" )

    attributeFilter1: An attribute filter.

    attributeFilter2: Another attribute filter, reducing the selection even more

    attributeFilterN: As many more attribute filters as necessary

Example:

Finds all inputs that have an id attribute and whose name attribute ends with man and sets the value.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                                  
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<input id="man-news" name="man-news" />
<input name="milkman" />
<input id="letterman" name="new-letterman" />
<input name="newmilk" />
<script> $('input[id][name$="man"]').val('only this one'); </script>
</body>
</html>