App overview
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
<script>
document.getElementById('leadForm').addEventListener('submit', function(e) {
const form = e.target;
const formData = new FormData(form);
edgetag('data', {
firstName: formData.get('firstName'),
lastName: formData.get('lastName'),
email: formData.get('email'),
phone: formData.get('phone'),
});
edgetag('tag', 'Lead');
});
</script>