Is event.button supported with Mousedown event in Adobe Launch? | Community
Skip to main content
andylunsford1
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
February 4, 2021
Solved

Is event.button supported with Mousedown event in Adobe Launch?

  • February 4, 2021
  • 2 replies
  • 2309 views

Hello, 

 

I'm trying to implement tracking that identifies right click vs left click on a type of link to answer questions regarding a modal flow.  

 

I need to determine if the user clicked on the link with a right click, left click, or other (middle, back, etc.).  I've been attempting to use event.button to refer to the mouseEvent in the custom code section in the action "Adobe Analytics - Set Variables", but it doesn't appear to be returning any value.

 

Event type that triggers the rule is a  "Mousedown" for the CSS selector "a[target='_generic-interstitial']" configured as shown below:

 

However, when this rule fires, I notice that the value for event.button appears to be unspecified upon reviewing the beacon set.  Is this supported inside the "Mousedown" event type?


Thanks!

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 yuhuisg

The "event" object that Launch's Event Types return are usually a "synthetic" event specific to Launch. They are not the actual browser events.

But these synthetic "event" objects normally have a "nativeEvent" field, which refers to the actual browser event. So you should be able to use "event.nativeEvent.button". (I haven't tried this myself.)

You can also use "console.log(event)" in your Rule's Custom Code action to see what Launch returns as its synthetic event.

2 replies

andylunsford1
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
February 4, 2021

Answering my own question with a solution I was able to make work for anybody who might have a similar need in the future.  Open to better implementation suggestions!

 

I was able to use the Custom Code event type & utilize jQuery to add the event listener. I imagine it would work with JavaScript as well, but I liked the standardization of event.which to avoid issues with left click & right click being identified differently, especially since we already have jQuery on the site.

Code below:

$('insert-css-selector-here').mousedown(function(event) { if (event.which === 3) { trigger(); } });

 

yuhuisg
Community Advisor
yuhuisgCommunity AdvisorAccepted solution
Community Advisor
February 6, 2021

The "event" object that Launch's Event Types return are usually a "synthetic" event specific to Launch. They are not the actual browser events.

But these synthetic "event" objects normally have a "nativeEvent" field, which refers to the actual browser event. So you should be able to use "event.nativeEvent.button". (I haven't tried this myself.)

You can also use "console.log(event)" in your Rule's Custom Code action to see what Launch returns as its synthetic event.

andylunsford1
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
February 12, 2021
The fact that these are "synthetic" events was the part I was missing. Testing with "console.log(event.nativeEvent.button)" returned a value, thanks!