mikejmoran of Speak Creative
3/19/2019 - 7:45 PM

Advance Phone Cursor

// advance cursor for phone inputs
$('.formmodule-phone-0, .formmodule-phone-1').keyup(function(){
  if ( $(this).val().length === 3 ) {
    $(this).next('input').focus();
  }
});