[tcb-script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"][/tcb-script]
[tcb-script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"][/tcb-script]
[tcb-script]
//$('div').click(function(e) {
/*e.preventDefault(); alert('Please first click the "Schedule Event" button and then the "Confirm Booking" button below to confirm your booking, otherwise it will be cancelled.');
location.href = "http://google.com";
});*/
// or
/*$('#myButton').click(function(e){
e.preventDefault();
alert('hello');
location.href="http://google.com";
});*/
// or if wanna add confirm box use this
$('#myButton').click(function(e) {
e.preventDefault();
if (confirm('Did you scheduled the event? If so click OK to confirm booking, if NOT click cancel and schedule the event before proceeding.')) {
location.href = "http://nunocarreira.com/lp/promatch/booking-confirmation/";
} else {
return;
}
});
[/tcb-script]