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