14 lines
349 B
JavaScript
14 lines
349 B
JavaScript
jQuery(function ($) {
|
|
$(document).on('click', '.fb-wa-banner .wa-close-button', function (e) {
|
|
e.preventDefault();
|
|
|
|
$.post(WCFBAdminBanner.ajax_url, {
|
|
action: 'wc_facebook_dismiss_banner',
|
|
nonce: WCFBAdminBanner.nonce,
|
|
banner_id: WCFBAdminBanner.banner_id
|
|
}).done(function (response) {
|
|
$('.fb-wa-banner').remove();
|
|
});
|
|
});
|
|
});
|