Home / Admin / trigger spesific monsterlink on hover
Duplicate Snippet

Embed Snippet on Your Site

trigger spesific monsterlink on hover

Code Preview
js
jQuery(document).ready(function($){
    // Change 'rt78pcbzrddo1y7w0yq3' to match your specific campaign slug
    var campaignSlug = 'rt78pcbzrddo1y7w0yq3';
    // When hovering over any element with the '.content' class - change as you require
    $('.content').on('mouseover', function() {
        window['om' + campaignSlug].startShow();
    });
});

Comments

Add a Comment