- Contents
Interaction Scripter Developer's Guide
Preview Process JavaScript
Preview data pop
function IS_Event_PreviewDataPop(p_names, p_values) {
// display preview data pop
page location.href = "previewpop.htm";
}
Preview call placement
window.onload = Init; function Init() {
// Populate page with call record data tagLName.innertext = IS_Attr_LName; } function PlacePreviewCall() {
// Place the preview call IS_Action_PlacePreviewCall.click(); } function SkipPreviewCall() {
// Skip this call record IS_Action_SkipPreviewCall.click();
// Return to call waiting page location.href = "index.htm"; }