-
Analytics
-
General
-
How to add a Form on my page?
-
Why use Our Embed Contact Us Form Builder
- Suitable for all Theme
- You can apply your own CSS and JS
- Add multiple receivers + BCC facilities
- Allow Duplicate Entry
- After form submission event
- Creating multiple forms
- Built-in Antispam
- Spam filter using ReCaptcha.
- Your own email Inbox Design
- File Upload Feature
- Add submitted form ID on subject
- Webhook for leads
-
Email Capture Tools and ReCaptcha
-
Plans and Settings
-
Other
-
App DashBoard
-
Questions and Answer
Callback after form submit get data value in function
After the form submit to get the form data value in aftersubmit() function under the additional tab
<script>
function afterSubmit(form){
var s = $(form).serialize();
var searchParams = new URLSearchParams(decodeURIComponent(s));
var x = decodeURIComponent(s);
var url_string = "https://cs-ecs.myshopify.com?"+x;
var url = new URL(url_string);
var c = url.searchParams.get("website");
console.log(c);
return true;
}
</script>
Like below screenshot:
NOTE: This option only for the advance plan of the app.
