0byt3m1n1
Path:
/
data
/
27
/
5
/
48
/
71
/
5374886
/
user
/
6435255
/
htdocs
/
wp-content
/
themes
/
business-way
/
assets
/
js
/
[
Home
]
File: about.js
( function( $ ) { 'use strict'; $(document).ready(function($){ $('.business-way-about-notice .btn-dismiss').on('click',function(e) { e.preventDefault(); var $this = $(this); var userid = $(this).data('userid'); var nonce = $(this).data('nonce'); $.ajax({ type : 'GET', dataType : 'json', url : ajaxurl, data : { 'action' : 'business_way_dismiss', 'userid' : userid, '_wpnonce' : nonce }, success : function (response) { if ( true === response.status ) { $this.parents('.business-way-about-notice').fadeOut('slow'); } } }); }); }); } )( jQuery );