I am implementing click to call by using href.
<a href="tel:+919876543210">Click here to call</a>
It is working for single number. But I need to give 2 numbers in href as alternate number.
I have tried with this,
<a href="tel:+919876543210, +919876543211">Click here to call</a>
I also tried with following approach,
<a href="tel:+919876543210, tel:+919876543211">Click here to call</a>
But it takes only first number. Is it possible to add 2 numbers in href? If yes then how? When user will click on this then random numbers should be choosed. Any help will be appreciated. Thanks in advance.