Sel Multipleattribute Equal Value
# jQuery Selector
[ jQuery Selectors](#)
## Example
Find input boxes that meet the conditions using a compound selector and set their values.
$(function(){ $("input[name$='man']").val("Only this input box"); })
[Try it Β»](#)
* * *
## Definition and Usage
is a compound attribute selector, used when multiple conditions need to be satisfied simultaneously.
* * *
## Syntax
_$_( "" )
| Parameter | Description |
| :--- | :--- |
| _attributeFilter1_ | Selector type, an attribute selector |
| _attributeFilter2_ | Selector type, another attribute selector to further narrow the scope |
| _attributeFilterN_ | Selector type, any number of attribute selectors |
* * jQuery Selectors](#)
YouTip