/**
* Getting Started
*/
jQuery( document ).ready( function ( $ ) {
$( '.ads-gsm-btn' ).click( function ( e ) {
e.preventDefault();
// Show updating gif icon.
$( this ).addClass( 'updating-message' );
// Change button text.
$( this ).text( wishful_companion.btn_text );
$.ajax({
type: "POST",
url: ajaxurl,
data: {
action : 'wishful_companion_getting_started',
security : wishful_companion.nonce
},
success:function( response ) {
var redirect_uri;
redirect_uri = response.data.redirect;
window.location.href = redirect_uri;
},
error: function( xhr, ajaxOptions, thrownError ){
console.log(thrownError);
}
});
} );
} );