(function($) { 'use strict'; $(window).on('reuna-mailchimp-subscribe', function(event) { $.ajax({ url: wpApiSettings.root + 'reuna-mailchimp/v1/subscribe/', method: 'POST', beforeSend: function (xhr) { xhr.setRequestHeader('X-WP-Nonce', wpApiSettings.nonce); }, data: { tags: event.detail.tags, }, }).done(function(response) {}); }); })(jQuery);