How to find a <input> whose type is text and value is "no"?
<input>
type
text
value
"no"
You can use multiple attribute selectors:
$("input[type='text'][value='no']")
More info:
Or use filter:
filter
$("input:text").filter(function () { return this.value == "no"; });
$('input:text[value=no]')