( function( jQuery ){
jQuery( document ).on( 'click', '.notice-info .notice-dismiss', function () {
var type = jQuery( this ).closest( '.notice-info' ).data( 'notice' );
jQuery.ajax( ajaxurl,
{
type: 'POST',
data: {
action: 'garden_lawn_care_dismissed_notice_handler',
type: type,
wpnonce: garden_lawn_care.wpnonce
}
} );
} );
}( jQuery ) )