Feedback

  • Contents
 

CallObject.blindTransfer Method

Definition

This method performs a blind transfer to the specified telephone number.  Use a blind transfer if you do not need to speak with the recipient before transferring a call. If the intended recipient does not answer, the call is sent to the recipient's voice mail.

Syntax

CallObject.blindTransfer(ToNumber);

Prototype

CallObject.blindTransfer(

[in] String ToNumber

)

Input Parameters

ToNumber

Telephone number of the transfer destination.

Return Values

None.


Example

<head>
    <script language="javascript">
        function blindTransfer() {
            CallObj = scripter.callObject;
            CallObj.blindTransfer(Phone1.value);
        }
    </script>
</head>
<body>     <table>         <tr>             <td><input type=button value="B. Transfer" onclick="blindTransfer();"></input>             </td>             <td>Number</td>             <td><input name="Phone1" id="Phone1"></input>             </td>         </tr>     </table> </body>