Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi All.
Using Umbraco Forms 4.4.7
Is there an easy to way to only allow forms submit with the keyboard key ENTER, when the submit button is marked?
Or what do others do?
$(document).on("keydown", "form", function (event) { if (event.key === "Enter") { var target = $(event.target); if (target.attr("type") === "submit" || target.is("a") || target.is("select") || target.is("textarea")) { return true; } else { return false; } } return true; });
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Umbraco Forms only submit on ENTER when submit is marked.
Hi All.
Using Umbraco Forms 4.4.7
Is there an easy to way to only allow forms submit with the keyboard key ENTER, when the submit button is marked?
Or what do others do?
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.