Server IP : 192.158.238.246 / Your IP : 18.227.111.102 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jenniferflocom/www/wp-content/plugins/mstore-api/assets/js/ |
Upload File : |
jQuery(document).ready(function ($) { $(document).on('click', '.mstore-delete-json-file', function () { var id = $(this).data('id'); var nonce = $(this).data('nonce'); $.ajax({ type: 'post', url: MyAjax.ajaxurl, data: { action: 'mstore_delete_json_file', id: id, nonce: nonce }, success: function (result) { if (result == 'success') { location.reload(); } } }) return false; }) $(document).on('blur', '.mstore-update-limit-product', function () { var limit = $(this).val(); $.ajax({ type: 'post', url: MyAjax.ajaxurl, data: { action: 'mstore_update_limit_product', limit: limit }, success: function (result) { if (result == 'success') { } } }) return false; }) $(document).on('blur', '.mstore-update-firebase-server-key', function () { var serverKey = $(this).val(); $.ajax({ type: 'post', url: MyAjax.ajaxurl, data: { action: 'mstore_update_firebase_server_key', serverKey: serverKey }, success: function (result) { if (result == 'success') { } } }) return false; }) $(document).on('blur', '.mstore-update-new-order-title', function () { var title = $(this).val(); $.ajax({ type: 'post', url: MyAjax.ajaxurl, data: { action: 'mstore_update_new_order_title', title: title }, success: function (result) { if (result == 'success') { } } }) return false; }) $(document).on('blur', '.mstore-update-new-order-message', function () { var message = $(this).val(); $.ajax({ type: 'post', url: MyAjax.ajaxurl, data: { action: 'mstore_update_new_order_message', message: message }, success: function (result) { if (result == 'success') { } } }) return false; }) $(document).on('blur', '.mstore-update-status-order-title', function () { var title = $(this).val(); $.ajax({ type: 'post', url: MyAjax.ajaxurl, data: { action: 'mstore_update_status_order_title', title: title }, success: function (result) { if (result == 'success') { } } }) return false; }) $(document).on('blur', '.mstore-update-status-order-message', function () { var message = $(this).val(); $.ajax({ type: 'post', url: MyAjax.ajaxurl, data: { action: 'mstore_update_status_order_message', message: message }, success: function (result) { if (result == 'success') { } } }) return false; }) })