( function( jQuery ){ jQuery( document ).ready( function(){ jQuery( '.animal-pet-store-btn-get-started' ).on( 'click', function( e ) { e.preventDefault(); jQuery( this ).html( 'Processing.. Please wait' ).addClass( 'updating-message' ); jQuery.post( animal_pet_store_ajax_object.ajax_url, { 'action' : 'install_act_plugin' }, function( response ){ location.href = 'customize.php?animal_pet_store_notice=dismiss-get-started'; } ); } ); } ); jQuery( document ).on( 'click', '.notice-get-started-class .notice-dismiss', function () { var type = jQuery( this ).closest( '.notice-get-started-class' ).data( 'notice' ); jQuery.ajax( ajaxurl, { type: 'POST', data: { action: 'animal_pet_store_dismissed_notice_handler', type: type, } } ); } ); }( jQuery ) )