om.Iframes.init

document.addEventListener(‘om.Iframes.init’, function(event) { console.log(event.detail.Iframes); console.log(event.detail.Campaign); } );Continue reading

JSON-LD for 25 foot Beam Press Release

{ “@context”: “https://schema.org”, “@type”: “NewsArticle”, “mainEntityOfPage”: { “@type”: “WebPage”, “@id”: “https://easilymovedequipment.com/easily-moved-equipment-unveils-25-foot-5-tonne-aluminum-beam-for-high-capacity-gantry-cranes-80-lighter-than-steel/” }, “headline”: “Easily Moved Equipment Unveils 25-Foot, 5-Tonne Aluminum Beam for High-Capacity Gantry Cranes – 80% Lighter than Steel”, “description”: “Easily Moved Equipment (EME) introduces a revolutionary 25-foot, 5-tonne…Continue reading

eme FAQ Overview

{ “@context”: “https://schema.org”, “@type”: “FAQPage”, “mainEntity”: [ { “@type”: “Question”, “name”: “Can the eme Gantry Crane be moved while under load?”, “acceptedAnswer”: { “@type”: “Answer”, “text”: “Yes, every eme Gantry Crane can be moved while under its full-rated lifting capacity.”…Continue reading

om.Html.init

document.addEventListener(‘om.Html.init’, function(event) { console.log(event.detail.Html); console.log(event.detail.Campaign); } );Continue reading

om.Sites.init

document.addEventListener(‘om.Sites.init’, function(event) { console.log(event.detail.Sites); // An array of all the Site objects associated to this campaign. console.log(event.detail.Sites.sites); console.log(event.detail.Campaign); } );Continue reading

snow monkey forms サンクスページのbodyにclass付与

document.addEventListener(‘DOMContentLoaded’, () => { const observer = new MutationObserver(() => { const form = document.querySelector(‘[data-screen]’); if (form) { const screen = form.getAttribute(‘data-screen’); if (screen === ‘confirm’) { document.body.classList.add(‘smf-confirm’); observer.disconnect(); } else if (screen === ‘complete’) { document.body.classList.add(‘smf-complete’); observer.disconnect(); } }…Continue reading