December 16, 2022
The following code snippet expects your form to have an ID of "my-form", however this can be changed to whatever you want. Also make sure to replace the example URL to your own.
$(document).ready(function () {
$("#my-form").attr("redirect", "http://www.example.com/my-redirect-url");
$("#my-form").data("redirect", "http://www.example.com/my-redirect-url");
});