i found the code from skype dev site
for calls from my webpage:
Skype.ui({
name: "call",
element: "skypeButton",
participants: ["+390852298965"],
imageSize: 32
});
But i need to make calls using dynamics phome numbers, recovered from a textbox, for example:
Skype.ui({
name: "call",
element: "skypeButton",
participants: function () {
return [$("#phonenumber").val()];
},
imageSize: 32
});
but this code doesn't works... hope someone can help me!!
Thanks in advance!