how can i show a div on selecting a radio button.
wat is the event of radio button clik
<script type="text/javascript">
$(".static_class").click(function(){if($(this).val()==="Yes") $("#extra").show("fast"); else $("#extra").hide("fast");});
</script>
Yes
<input id="r2" type="radio" name="14" value="No" class="static_class style1" /> No<br />
If yes, please specify.