Previous page Next page

Click-to-Dial Functionality

Embedded as <a href="javascript:dial(’nnnn’)"> nnnn is passed to the Phone application to initiate a telephone call.

Example:

<html><head>
<body>
<table border="0" width="100%">
     <tr>
     <td>
          <b>Call IT Technical Support:</b><br>
          <a href="javascript:dial('1-555-555-5151')">
          <img border="0" src="call.gif">1-555-555-5151
          </a>
     </td>
     <tr>
     <td>
          <b>Call Bill Pay:</b><br>
          <a href="javascript:dial('1-555-555-5152')">
          <img border="0" src="call.gif">1-555-555-5152
          </a>
     <td>
     <tr>
</table>
</body></html>

The generated code is rendered as this Web page:


Previous page Next page