Hi all,
I'm new to Laserfiche forms so forgive my ignorance. The code below is not supposed to do anything, just playing with the functionality for the sake of learning how this all works. When I return false in the onSubmit, it stops the submission, displays "Submitting..." at the bottom of the form and disables all form fields. What am I doing wrong here? Shouldn't it just stop the submission process and leave the form as is?
$(document).ready(function () {
$("#form1").on("submit", function(event) {
//event.preventDefault();
return false;
});
});