ericakfranz
11/27/2015 - 8:51 PM

Trigger a click on a specific MonsterLink when hovering over any link containing the rel="external" attribute.

Trigger a click on a specific MonsterLink when hovering over any link containing the rel="external" attribute.

jQuery(document).ready(function($){
  $('a[rel*=external]').live('mouseover', function() { // When any link contains 'external' in the rel attribute
    $('.manual-optin-trigger[data-optin-slug=u6mkwuqm0xf6g94d]').trigger('click'); // Change 'u6mkwuqm0xf6g94d' to match your specific optin slug
  });
});