mirror of
https://gh.wpcy.net/https://github.com/pawankhated/one-click-wordpress-installer.git
synced 2026-04-22 00:39:17 +08:00
20 lines
No EOL
624 B
JavaScript
20 lines
No EOL
624 B
JavaScript
jQuery( document ).ready(function() {
|
|
jQuery('#njt-yc-noti-dismiss').click(function(){
|
|
jQuery.ajax({
|
|
url: ajaxurl,
|
|
method: 'POST',
|
|
data: {
|
|
action: 'njt_yaycommerce_dismiss',
|
|
nonce: yaycommerce.nonce,
|
|
type: 'noti'
|
|
},
|
|
success: function(){
|
|
jQuery('#njt-yc').hide("slow")
|
|
},
|
|
error: function(response){
|
|
jQuery('#njt-yc').hide("slow")
|
|
console.log(response.error)
|
|
}
|
|
})
|
|
})
|
|
}); |