I am trying to select my radio button value within multiple divs but i don't know.
Also, append text within table but it doesn't work. maybe my syntax is wrong?
I've also tried appendTo() but same. nothing appears on the screen
input radio is located..
<div id="wrap">
<div id="section1">
<table class="question">
<tr><td><input type="radio" value="yes" name="tv"/></td><td><p id="position"></p></td></tr>
</table>
</div>
</div>
And below is my jquery source in script.js
$('#section1.input:radio["tv"]').change(function(){
if ($(this).val() == 'yes') {
$('#position').append("test appending");
});