I have a "Click to call" button on my website. Then the user clicks it, he/she is navigated to a different page.
Here is my HTML markup
<a href="tel:+18001234567" class="btn btn-lg btn-danger btn-block click-to-call">
<strong>Call Now</strong>
</a>
How can I change my code so that the user stays on the same page when they click to call? My goal is to trigger the phone to dial a given number while keeping the user on the same page.