| 1 |
jQuery(document).ready(function($){ |
| 2 |
$(document).on('click','.wpfadmin_notice', function(){ |
| 3 |
phrase = $(this).attr('id'); |
| 4 |
$.ajax({ |
| 5 |
type: 'POST', |
| 6 |
url: wpf_admin_notice_obj.url, |
| 7 |
data: { |
| 8 |
phrase: phrase, |
| 9 |
action: 'wpf_admin_notice_ajax' |
| 10 |
} |
| 11 |
}).done(function( response ){ |
| 12 |
$('#' + response).slideUp( 400 ); |
| 13 |
}); |
| 14 |
}); |
| 15 |
}); |