Reputation: 5509
I want this number "*3*123#" to be inserted as the tel number. but upon clicking link from android devices the # sign omitted and the number to be dialed is *3*123.I have also tried all of these codes but none of them could do the job.
<a href="tel:*3*123#">
<a href="tel:*3*123#">
Upvotes: 2
Views: 313
Reputation:
You can achieve this without JS, by using'#', which is the equivalent to & => & for the # symbol.
I.e:
<a href="tel:*3*123#">tel:*3*123#</a>
Upvotes: 0