balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

mtekk_adminkit_messages.js (363B)


      1 jQuery(function()
      2 {
      3 	jQuery("div.notice button.notice-dismiss").click(function (event){
      4 		data = {
      5 			'action': 'mtekk_admin_message_dismiss',
      6 			'uid': jQuery(this).parent().children("meta[property='uid']").attr("content"),
      7 			'nonce': jQuery(this).parent().children("meta[property='nonce']").attr("content")
      8 		};
      9 		jQuery.post(ajaxurl, data);
     10 	});
     11 });