| 1 |
jQuery(document).ready(function($) { |
| 2 |
$('#mxchat-activation-form').on('submit', function(event) { |
| 3 |
event.preventDefault(); |
| 4 |
|
| 5 |
var formData = { |
| 6 |
action: 'mxchat_activate_license', |
| 7 |
email: $('#mxchat_pro_email').val(), |
| 8 |
key: $('#mxchat_activation_key').val(), |
| 9 |
security: mxchatAdmin.nonce |
| 10 |
}; |
| 11 |
|
| 12 |
$.post(mxchatAdmin.ajax_url, formData, function(response) { |
| 13 |
if (response.success) { |
| 14 |
$('#mxchat-license-status').text('Active'); |
| 15 |
} else { |
| 16 |
$('#mxchat-license-status').text('Inactive'); |
| 17 |
alert(response.data); |
| 18 |
} |
| 19 |
}); |
| 20 |
}); |
| 21 |
}); |
| 22 |
|