I'm having trouble to make a tel: link that sends a specific code: *1#
the link is a normal tel: link:
<button class="call">send the code</button>
<script>
$(".call").click( function()
{
window.location = "tel:*1#";
}
);
</script>
The * are sent right, but when the phone number pops up, here is no # symbol.
I have tried to escape it with %23 (instead of #), but nothing, I see %23 in the link. Any idea?