7
I need to add an "online support" button to my page but instead of creating an online chat I would like to use Skype.
What is the best way to implement this?
7
I need to add an "online support" button to my page but instead of creating an online chat I would like to use Skype.
What is the best way to implement this?
12
Use the Skype URI
Instead of the url you pass a command that will be understood by the browser as executing an instruction in an external application
<a href='skype:echo123?chat&topic=Teste'>Abrir conversa</a>
<a href='skype:echo123?call&topic=Assunto'>Iniciar chamada</a>
In the above examples, echo123 is the skype contact, chat / call is the type of action that skype will perform and topic is the subject of the call.
You can see more example on skype
The browser will display a dialog window requesting authorization to launch the application. Something similar to what happens when you click on the magnetic link of a torrent, only after that the skype will start.
Browser other questions tagged html skype
You are not signed in. Login or sign up in order to post.