Click to Call
Cisco Unified Communications Widgets
http://www.cisco.com/en/US/products/ps9829/index.html
Click to Call Overview
http://www.cisco.com/en/US/prod/collateral/voicesw/ps6882/ps9156/at_a_glance_c45-487474.pdf
Click to Call User Guides
http://www.cisco.com/en/US/products/ps9829/products_user_guide_list.html
Webdialer Dialer API for customized Click to Call
http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/devguide/7_1_2/wd.html#wp1054882
Test Number: 0014249983
Test Number: +353 1 4249983
tel:+3531 4249983
Tel html Example which can be used with Click to Dial App
<a href="tel:51883">Phone 51883</a>
WebDialer Form Example
WebDialer Form Code
<html>
<FORM action="https://10.201.11.111/webdialer/Webdialer" method="post">
<P>
<INPUT type="hidden" name="destination" value="51883">
<INPUT type="submit" value="Send">
</P>
</FORM>
</html>
WebDialer JavaScript Code Example
function launchWebDialerWindow( url ) {
webdialer=window.open( url, "webdialer", "status=no, width=420, height=300,
scrollbars=no, resizable=yes, toolbar=no" );
}
function launchWebDialerServlet( destination ) {
url = 'http://<%=server_name%>/webdialer/Webdialer?destination=' +
escape(destination);
launchWebDialerWindow( url );
}
!These functions can be called from the HTML page which has a hyperlink to the phone
number to be called. An example of it is:
<TD><A href="javascript:launchWebDialerServlet( 51883 )"><51883></A> </TD>