I have a html page with links like < a href="tel:*123#">*123#< /a>.

when user clicks on the link from a nokia device (tested with N73, E72) it says 'invalid phone number'. I have found that numbers without the # symbol are dialed out fine.

Just wondering if there's a specific reason for this restriction and is there a way to encode those numbers so that they work from nokia devices.

Deepak.

link|improve this question

57% accept rate
did you tried to use entities instead of * and # ? – njzk2 Aug 19 '11 at 9:18
how do i do that? – Deepak Trama Aug 23 '11 at 10:36
use html entities, like &entity_name; – njzk2 Aug 23 '11 at 10:43
Don't forget, "#" and "*" are reserved characters and you will need to URL encode them. Usually as <a href="tel:%2A123%23"> You can find out more about percent encoding at en.wikipedia.org/wiki/Percent-encoding – Terence Eden Jan 9 at 13:56
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.