Hello
I'm creating a small app, and I can not make calls to phone numbers entered through forms. The data is entered in a settings page:
<div data-role="fieldcontain">
<form action="" method="post" name="config"><label for="bombeiros">Bombeiros</label>
<input name="bombeiros" type="text" id="bombeiros" value="" size="9" maxlength="9" />
</div>
And calls are made on other pages:
<td width="20%" height="45" align="center"><a rel="external" href="tel:+351333666999" ><img src="jquery-mobile/images/bombeiros.png" width="70" height="70"></td>
So it makes calls to # 333666999, what I wanted is that you keep the number entered in the form of the settings and make calls to that number. which would only be lost when it was replaced by another one in the form.
It's all in an index.html
Thanks for the help.