I am looking to enhance the functionality of my website using jQuery or css. My goal is to be able to select one of 3 images and:
- enlarge the image when hovered over
- keep the selected image enlarged
Below is the code that I currently have. Unfortunately, I am not utilizing HTML5. Any assistance on this matter would be greatly appreciated.
<body>
<table>
<tr>
<td>
<input type="radio" name="editList" value="general"><img src="images/debit_general.png" />
<input type="radio" name="editList" value="plane"><img src="images/debit_plane.png" />
<input type="radio" name="editList" value="robot"><img src="images/debit_robot.png" />
</td>
</tr>
</table>
<script>
alert($("#editList").val);
</script>
</body>