PluginProbe
MxChat – AI Chatbot & Content Generation for WordPress / 1.0.5
MxChat – AI Chatbot & Content Generation for WordPress v1.0.5
3.2.21 3.2.20 3.2.19 3.2.18 3.2.17 3.2.16 3.2.15 3.2.14 3.2.12 3.2.13 3.2.11 3.2.10 3.2.9 3.2.8 3.2.7 3.2.6 3.2.5 3.2.4 3.2.3 3.2.2 3.2.1 2.0.3 2.0.4 2.0.5 2.0.6 All 152 releases
mxchat-basic / js / mxchat-admin.js

mxchat-admin.js in MxChat – AI Chatbot & Content Generation for WordPress 1.0.5, at js/mxchat-admin.js

22 lines 703 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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