Google Tracking Telephone Clicks w/ WordPress integration

So if you have jQuery and the gtag method for Google Analytics running on your site you can add the following code to the head tag of your site. jQuery( document ).ready( function() { jQuery(“a[href^='tel']”).on(“click”,function(){ gtag(...

Hide Video Download in Divi

If you want it to be site wide, go into the Divi > Theme Options > Integrations and add the following code to the head area of your site. <script> jQuery(document).ready(function() { jQuery(‘.et_cstm_video video').attr(‘controlsList',...

Improve Bounce Rate

Bounce rate is single-page sessions divided by all sessions, or the percentage of all sessions on your site in which users viewed only a single page and triggered only a single request to the Analytics server. These single-page sessions have a session duration of 0...

jQuery | Select All Checkboxes

jQuery select all boxes description.   <?php /* You of course need to make sure the jQuery js file is being included. Here is one method of implementing this:<script src=”https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js”...

jQuery on click scroll to content

I needed a way to on clicking of an A tag scroll to top of a list that was getting updated.  So here is the code that I came across. <script> jQuery(document).ready(function() { jQuery(‘a.link-designation').on(“click”, function () {...