Feedback

  • Contents
 

IS_Attr_Schedphone

Definition

This attribute can be assigned the telephone number of a call to schedule. When implemented in a script, add a meta tag (or other named element) called 'is_attr_schedphone' whose value will be assigned the scheduled phonenumber. When this attribute is present in the script, you must ensure that it gets initialized to "" for every data pop.


Example

<head>
    <meta name="IS_attr_schedphone">
    <meta name="IS_Action_CallComplete">
    <script language="javascript">
        function doSchedule() {
            IS_attr_schedphone.value = "555-1448"
            IS_Action_CallComplete.wrapupcode = "Scheduled";
            IS_Action_CallComplete.agentid = "Dev_PD_User1";
            IS_Action_CallComplete.click();
        }
    </script>
</head>