Enter key does not work on Safari

Hello!

I have a multipage form and I noticed that the Enter key on Safari does not work to go to the next page or submit the form. It works well on Chrome and Firefox. You can see it here: Suscripción - Cobardes y Gallinas

Why is this happening? Can I get it to work somehow?

Thanks!

Hello, I could fix it by adding my own JS code:

//Enviar formulario con Enter
jQuery(document).on('keydown',function (e) {
    if (e.keyCode == '13') {
        jQuery('#gform_6').submit();
        return false;
    }
});

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.