Reputation: 49
I'm trying to make a button with funcionality of phone calling using Skype (not Skype For Business). I've bought a prepaid which allows me to make phone calls. For Skype-Skype call I'm using command:
<a href="skype:[email protected]?call" class="generate-call btn btn-success" >Call</a>
Is it possible to make a Skype phone call with similar way? Or I need different construction?
Upvotes: 0
Views: 482
Reputation: 1322
try this:
<a href="callto://+[the number]">Link will initiate Skype to call my number!</a>
<a href="skype:[the number]?call">Link will initiate Skype
to call my Skype username!</a>
Upvotes: 1