How can i make my iPhone call by pressing some element on web-page? I need something like
$("#container").click(function() { /Making a call/ });
How can i make my iPhone call by pressing some element on web-page? I need something like
$("#container").click(function() { /Making a call/ });
This should work (not tested):
$("#container").click(function() {
window.location.href("tel://15415551234");
});