jQuery(function ($) { $(document).on("click", ".a2wl_aliexpress_order_fulfillment", function () { if ( typeof $(this).attr('id') == "undefined" && $(this).attr('href').substr(0,1) == "#" ) var id = $(this).attr('href').substr(1); else var id = $(this).attr('id').split('-')[1]; $.a2wl_ali_fulfill_order(id); return false; }); $.a2wl_ali_fulfill_order = function (id) { var data = {'action': 'a2wl_get_aliexpress_order_data', 'id': id}; $.post(ajaxurl, data, function (response) { var json = jQuery.parseJSON(response); if (json.state === 'error') { console.log(json); jQuery('.wrap > h1').after('

'+json.error_message+'

'); jQuery("#a2wl-fulfill-dismiss-admin-message").click(function(event) { event.preventDefault(); jQuery('.' + 'error').fadeTo(100, 0, function() { jQuery('.' + 'error').slideUp(100, function() { jQuery('.' + 'error').remove(); }); }); }); } else { //console.log(json); if (json.action == 'upd_ord_status'){ } a2wl_get_order_fulfillment(json.data.content, function(){} ); } }); } });