0

Possible Duplicate:
URL Scheme for Phone Call
iphone safari making phone call

I am using the code below on a mobile site but when somebody clicks I don't want them directed to a new page I want a phone number to be called. Is this possible using the onClick function?

<div class="button left" id="map" onClick="window.location='#'"><span class="bottom">Call us now</span></div>
Community
  • 1
  • 1
user1016078
  • 103
  • 1
  • 4
  • 14

1 Answers1

6

You should rather use something like

<a href="tel:[phone number]"><span class="bottom">Call us now</span></a>
Sujay
  • 2,198
  • 23
  • 32