hello,
i have a question:
i made a page with text field and submit button calling a remote ASP page on another domain.
so:
http://www.server1.com/index.html call http://www.server2.com/result.asp
The result of request sent is displaying in a textbox.
On my remote ASP page i put this code:
<div id="m1-distrib-nom" class="m1-text">Name</div>
<img id="m1-distrib-accessoryImage1" class="m1-hyperlink" src="res/images/75-phone.png"
href="tel:0102030405"/>
but when i click on image nothing append . i think is because the function “tel” is called by a remote page.
So i tried to change by a js function like :
<a href="javascript:placecall('0102030405')><img id="m1-distrib-accessoryImage1" class="m1-hyperlink" src="res/images/75-phone.png" "/></a>
but i don’t know how to call “tel” function from my js.
phoneui.tel(number);
?
Can you help me please?
thanks a lot
Yann