I am trying to find the value of an input statement that does not have an id.
The html is:
<td id="LastName">
<input type="text" value="Abner">
</td>
The jQuery code I am trying to use is:
var name = $('#LastName').find('input').value
But it keeps coming up empty. I thought I had read about .find() properly, but apparently not.
Anyone see my error?