Skip to main content
Skip to footer
/* Elite Firearms - Product Share Buttons */
(function() {
function addShareButtons() {
if (!document.body.classList.contains('single-product')) return;
if (document.querySelector('.ef-share-buttons')) return;
var url = encodeURIComponent(window.location.href);
var productName = document.querySelector('.product_title') ? encodeURIComponent(document.querySelector('.product_title').textContent.trim()) : encodeURIComponent(document.title);
var shareHTML = '';
var target = document.querySelector('form.cart');
if (target) { target.insertAdjacentHTML('afterend', shareHTML); }
}
if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', addShareButtons); }
else { setTimeout(addShareButtons, 300); }
})();