You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had the same problem, because we do not use $ as a prefix for jQuery to prevent problems between different libraries.
You have just to replace the $ char with jQuery: customEvent = $.Event(eventName, {originalEvent: originalEvent})
to customEvent = jQuery.Event(eventName, {originalEvent: originalEvent})
Hi,
I'm struggling to get this script to work. Using with jQuery 1.9.
If I click anywhere on a page, I get
Uncaught TypeError: Cannot read property 'Event' of undefined
The text was updated successfully, but these errors were encountered: