Accessing "value" Property of td element using jquery -


i have following td element:

 <td> <input type="radio" name="n1" onclick="f1(this)" value="moon"> </td> 

how access "value" property using jquery

you can try this:

var obj=$("td input:radio[value=moon]"); 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -