0

How can i make my iPhone call by pressing some element on web-page? I need something like

$("#container").click(function() { /Making a call/ });

Nick
  • 13
  • 5
  • 2
    possible duplicate of [Trigger phone call with Javascript](http://stackoverflow.com/questions/16781772/trigger-phone-call-with-javascript) – Turnip Oct 24 '14 at 13:47

1 Answers1

0

This should work (not tested):

$("#container").click(function() {
    window.location.href("tel://15415551234");
});
Ruud
  • 141
  • 1
  • 1
  • 10