javascript - onClick - call phone number -
possible duplicate:
url scheme phone call
iphone safari making phone call
i using code below on mobile site when clicks don't want them directed new page want phone number called. possible using onclick function?
<div class="button left" id="map" onclick="window.location='#'"><span class="bottom">call now</span></div>
you should rather use
<a href="tel:[phone number]"><span class="bottom">call now</span></a>
Comments
Post a Comment