Hey guys I'm tryng to hide radio button while showing label image.
<span id="js" class='info'>
<label><input type="radio" name="vote" value="0" size="<?php echo $row['id']; ?>" onclick="js(this.value, this.size);" /><img src="something.jpg"/></label>
<br />No:
<label><input type="radio" name="vote" value="1" size="<?php echo $row['id']; ?>" onclick="js(this.value, this.size);" /><img src="something.jpg"/></label>
</span>
I know this requires jquery to be linked with my span's id "js" but don't know the javascript code for it. Any help?
Thanks