How can i select the selected text from third cell in the below table?
I tried the code $(this).closest('tr').find("td:eq(3)").text()
on click of a hyperlink in the second cell, but its retrieving all the options from drop down.
<table class="table table-bordered table-hover table-condensed">
<thead>
<tr>
<th>#</th>
<th>User Name</th>
<th>Email Id</th>
<th>Contact</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td style="text-align: center;"><a class="enq_quest_lnk" id="118226023178108086021825461254">View</a></td>
<td>
<select class="form-control input-sm">
<option value="1" selected="">Enquiry Received</option>
<option value="2">Response Sent</option>
</select>
</td>
<td><a href="#" value="118226023178108086021825461254" id="enqsave" class="btn btn-sm btn-custom"> Save </a></td>
</tr>
</tbody>
</table>