Open GoogleCodeExporter opened 9 years ago
Your php code should probably be:
<li><a href="tel:$phone">$phone</a></li>
because the hinting (i.e., an underlined link) is the user's only visual clue
that
the phone number is clickable.
Original comment by anthon.p...@gmail.com
on 6 Jan 2009 at 5:07
Fix is to add this code to the addEventListener() function. I added it after
the the if(link.href && link.hash &&
link.hash != #) block:
else if (link.href.substring(0,4) == "tel:"){
// do nothing.
return;
}
If you want mailto: links to work like normal instead of iui trying to post
them via ajax then change it to:
else if (link.href.substring(0,4) == "tel:" || link.href.substring(0,7) ==
"mailto:"){
// do nothing.
return;
}
Original comment by phipps...@gmail.com
on 19 Feb 2010 at 5:54
Original issue reported on code.google.com by
marco.la...@gmail.com
on 26 Sep 2008 at 3:52