I'm using jQuery Validation Plugin and I want to be able to dynamically add and remove validation from 3 radio button groups.
I am able to dynamically add and remove validation from text field input using the sample code below:
<script type="text/javascript">
$(document).ready(function(){
//Add Requird Validation
$("#inputTextField").rules("add", "required");
//Remove Required Validation
$("#inputTextField").rules("remove", "required");
});
</script>
Is it possible to do the same with radio buttons?