Detecting HTML click-to-call support in JavaScript



The tel: protocol is supported by almost every mobile device nowadays. This includes Safari on iOS, Android Browser, Symbian browser, Opera Mini, etc.

Add it like this −

if (/(HTC825)/i.test(navigator.userAgent)){
   $("a[href^='tel:']").each(function(){
      this.href = this.href.replace("tel:", "wtai://wp/mc;");
   });
}

Advertisements