requirement, want to find the input fields that have been entered specific
html,
<ul class="test-list">
<li>
<input class="test-input">
</li>
<li>
<input class="test-input">
</li>
<li>
<input class="test-input">
</li>
</ul>
example,
if the user entered "test1", "test2", "test3" in each input field
i tried javascript,
$('.test-list').find('.test-input [value="test1"]')
and i expect getting the input field that have entered test1, but it returns 0 array :(
i tried filter()
and witht his it works, but i want to find it directly like the first one.