I have checked show and hide divs based on radio button click, but my code still doesn't work. Basically the div tag will be hidden unless click the "package_1"
HTML is like this:
<table><tr><td>
<input type="radio" name="cars" id="Package_1" />
<input type="radio" name="cars" id="Package_2"/>
</td></tr></table>
<div class="package_extension"></div>
JQuery below:
$(".package_extension").hide();
$("#Package_1").click(function(){
$(".package_extension").show();
});