Skip to content

Instantly share code, notes, and snippets.

View adriancarriger's full-sized avatar
:octocat:

Adrian Carriger adriancarriger

:octocat:
View GitHub Profile
@silversillu
silversillu / rage-clicks.js
Created September 18, 2019 07:36
Tracking Rage Clicks using GTM
if ( typeof(jQuery) === 'function' ) {
jQuery(document).ready(function($) {
jQuery.fn.extend({
getPath: function() {
var path, node = this;
while (node.length) {
var realNode = node[0],
name = realNode.localName;
if (!name) break;
name = name.toLowerCase();