checkbox checked focus the conditional field
-
checkbox is for call-back – when checked the input field is shown to insert the phone-number. on Desktop everything works fine with f.e.:
$("input[name = 'rueckrufwunsch[]']").on("change", function() { if (this.checked) { setTimeout(function() { $('#rueckrufnummer').focus(); }, 300); } });
rueckrufwunsch is the checkbox –
rueckrufnummer is the input field for phone-numberbut it does not work on iphone/ipad etc.
is there a way to obtain that the input field is directly activated to input the numbers?The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘checkbox checked focus the conditional field’ is closed to new replies.