Phone Call Placing

[Solved] Phone Call Placing | Swift - Code Explorer | yomemimo.com
Question : phone call placing

Answered by : mushy-millipede-ocx56snilgzq

<form action='/' method='get'>
<a>Enter the phone number, what you want to call</a> <input type='tel' name='tel' /> <input type='submit' onclick='call();return false;' value='Call' />
</form>
<script> function call() { var number = document.querySelector("input[name=tel]").value; window.open('tel:' + number); }
</script>

Source : https://stackoverflow.com/questions/34480852/html-php-type-a-telephone-number-and-call-it?noredirect=1&lq=1 | Last Update : Mon, 06 Dec 21

Answers related to phone call placing

Code Explorer Popular Question For Swift