Hi,
I’m trying to to run an AjaxHandler and open a blank tab upon a button click.
So I have
<a href="javascript:;" target="_blank" data-browser-target="_blank" data-request-confirm="Are you sure?" data-request="onUserEnroll" class="btn btn--block">Enroll now</a>
but it does not open a blank window that is supposed to received the redirect url from the AJAXhandler onUserEnroll
public function onUserEnroll() {
return Redirect::to('https://google.com);
}