Posts by Ian Dev • 9 points
1 post
-
0
votes2
answers44
viewsA: Show / Hide in a form when clicking an input radio
Follows: $("input[name$='bn']").click(function(){ var radio_value = $(this).val(); if(radio_value=='0') { $("#fisica").hide("slow"); $("#juridica").hide("slow"); } else if(radio_value=='1') {…