Go to next step after select radio button
-
Hi, is it possible go to next step after select radio button without using submit button?
I trying that script, but I do not know for what functions change the last lines of code.
<script>
$(document).ready(function() {
$(‘input[name=radio-41]’).change(function(){
if($(‘input[name=radio-41]’).is(‘:checked’)){
$(‘form’).submit();
}
});});
</script>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Go to next step after select radio button’ is closed to new replies.