Friday 28 March 2014

Clear Radio Button List Selection by jQuery

Add the script to clear Radio Button List Selection :
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
function ClearAge() {
$('input:radio[name=rdbage]').attr('checked', false);
}
</script>

No comments:

Post a Comment