PluginProbe ʕ •ᴥ•ʔ
WP Chat App / 3.7.0
WP Chat App v3.7.0
3.8.1 3.8.2 trunk 2.6 3.4 3.4.1 3.4.2 3.4.4 3.4.5 3.4.6 3.5 3.6 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.6.9 3.7.0 3.7.1 3.7.2 3.7.3 3.7.4 3.8.0
wp-whatsapp / assets / js / admin.js
wp-whatsapp / assets / js Last commit date
admin.js 1 year ago cross.js 1 year ago whatsapp-button.js 1 year ago whatsapp-popup.js 1 year 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 });