/*! * Creative Elements - live Theme & Page Builder * Copyright 2019-2022 WebshopWorks.com */ document.addEventListener('DOMContentLoaded', function() { var prev; $('.elementor').each(function() { var uid = (this.className.match(/elementor-(\d+)/) || '')[1]; if (uid && uid !== prev) { prev = uid; $(this).addClass('ce-edit-wrapper'); $('').attr({ href: ceFrontendEdit.editor_url + '&uid=' + uid, title: ceFrontendEdit.edit_title, }).appendTo(this); $('
').appendTo(this); } }); });