Javascript – preventDefault() not preventing page redirect on form submission
I have a simple form being submitted into a third-party form/db location (Acoustic) and I'm trying to prevent the page from being redirected after submission. <form method="post" action="my-form-url-goes-in-here"> // form labels and fields </form> <button type="submit" id="mybtn">Submit</button> I've tried using…