script.js
20 lines
| 1 | jQuery(function ($) { |
| 2 | |
| 3 | let nonce = $('.bmi-banner__button-close').data('nonce'); |
| 4 | function banner_hide() { |
| 5 | $('.bmi-banner').hide(400); |
| 6 | } |
| 7 | |
| 8 | $('.bmi-banner__button-close').on('click', function () { |
| 9 | |
| 10 | $.post(ajaxurl, { action: 'bmi_gdrive_banner', token: 'bmigdb', nonce: nonce, mode: 'dismiss' }).done(function (res) { |
| 11 | |
| 12 | }).fail(function (err) { |
| 13 | console.error(err); |
| 14 | }); |
| 15 | |
| 16 | banner_hide(); |
| 17 | |
| 18 | }); |
| 19 | |
| 20 | }); |