As I work on tracking an event that triggers when a user attempts to exit the website by clicking on a link.
<a ng-click="bookingOutside(trip,0)" href="https://www.google.com" target="_blank">
<button type="button" class="externalBooking">
{{'BOOK'|translate}}
</button>
</a>
I'm facing an issue where the bookingOutside event isn't being activated. What could be causing this problem and what steps can I take to resolve it?