-
Notifications
You must be signed in to change notification settings - Fork 11
Tag Reference
Lauren Ancona edited this page Aug 31, 2018
·
1 revision
Tag - Custom HTML
<script>
var eventType = 'dropdownSelect'; // Modify this to reflect the event type you want to listen for
var useCapture = true;
if (document.addEventListener) {
document.addEventListener(eventType, {{JS - Generic Event callback}}, useCapture);
} else if (document.attachEvent) {
document.attachEvent('on' + eventType, {{JS - Generic Event callback}});
}
</script>