Skip to content

Instantly share code, notes, and snippets.

@rafarubert
Created May 20, 2011 22:31
Show Gist options
  • Save rafarubert/983942 to your computer and use it in GitHub Desktop.
Save rafarubert/983942 to your computer and use it in GitHub Desktop.
jquery_radio
$(".radioTag").bind("ready load change",function(){
if ($("input[@name='rdio']:checked").val() == 'fisica'){
$("#fisica").show();
$("#juridica").hide();
}else if ($("input[@name='rdio']:checked").val() == 'juridica'){
$("#fisica").hide();
$("#juridica").show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment