<table >
<tr>
<td>test1@gmail.com</td>
<td>
<select name="limit">
<option selected="selected">Can Edit</option>
<option>Can View</option>
</select>
</td>
<td>
<i class="icon-remove"></i>
</td>
</tr>
<tr>
<td>test2@gmail.com</td>
<td>
<select name="limit">
<option>Can Edit</option>
<option selected="selected">Can View</option>
</select>
</td>
<td>
<i class="icon-remove"></i>
</td>
</tr>
</table>
Consider the above HTML, how to get all emails that with Can Edit option selected using jQuery? Many thanks.
try this : ( shows every mail which has a option selected inside + CAN EDIT)
alerts :
http://jsbin.com/aroxuw/4/edit