How to trigger custom event in adobe launch rules | Community
Skip to main content
susheel
January 8, 2019
Solved

How to trigger custom event in adobe launch rules

  • January 8, 2019
  • 11 replies
  • 25398 views

We have a scenario where a custom event would be triggered. Now I want to fire a tag when the custom event is triggered. What I did is:

  1. Created a new rule.
  2. In events section I used Custom Event from the dropdown.
  3. filled Custom Event Type with email_submit(This is the custom event triggered via $(window).trigger('email_submit')).
  4. In then section I am triggering one of the extensions(DoubleClick Floodlight).

Note: if the use page top event then everything works fine but not with custom event. Please let me know If I am doing something wrong.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by susheel

For now I have done as below. I will keep on adding all events as I find.

$(window).on('event1 event2 event3',function(e) {

  document.body.dispatchEvent(new CustomEvent(e.type));

});

11 replies

susheel
susheelAuthor
January 11, 2019

All our custom events are written in jQuery. Migration is getting tough for us.