admin.js
2 years ago
cross.js
2 years ago
whatsapp-button.js
2 years ago
whatsapp-popup.js
2 years ago
admin.js
19 lines
| 1 | jQuery(document).ready(function() { |
| 2 | jQuery('#njt-wa-ads').click(function() { |
| 3 | jQuery.ajax({ |
| 4 | url: ajaxurl, |
| 5 | type: 'POST', |
| 6 | dataType: 'json', |
| 7 | data: { |
| 8 | 'action': 'njt_wa_ads_save', |
| 9 | 'nonce': window.njt_admin_ads.nonce |
| 10 | } |
| 11 | }).done(function(result) { |
| 12 | if (result.success) { |
| 13 | jQuery('#njt-wa-ads-wrapper').hide('slow') |
| 14 | } else { |
| 15 | console.log("Error", result.data.status) |
| 16 | } |
| 17 | }); |
| 18 | }) |
| 19 | }); |