These are your apps! Explore them! if (window.addEventListener) { window.addEventListener("message", onMessage, false); } else if (window.attachEvent) { window.attachEvent("onmessage", onMessage, false); } function onMessage(event) { // Check sender origin to be trusted if (event.origin !== "https://integration.pepperi.com") return; var data = event.data; if (typeof window[data.func] == "function") { window[data.func].call(null); } } // Function to be called from iframe function onAppCreate(status) { jQuery("#is_new_app_added").val("1"); var data = { action: "unsetConsumerKeys"}; jQuery.get(ElementorProFrontendConfig.ajaxurl, data, function (response) { console.log(response); }); }