Developer Navigation
Our custom JavaScript variable for stopping intellichat is VirtualAgentSuspend. By setting this value to anything other than our default 'false', intellichat will not launch on the page until its set back to 'false'.
This value can be set by doing the following:
VirtualAgentSuspend = 'stop';
</script>
Below is an example of a simple url redirection through a select element.
<option value="http://www.google.com">Google</option>
<option value="http://www.yahoo.com">Yahoo</option>
</select>
To stop intellichat from launching when the option is changed, the above code just needs to be updated to the following:
window.location=this.value">
<option value="http://www.google.com">Google</option>
<option value="http://www.yahoo.com">Yahoo</option>
</select>
For Forms you will want to add the variable to the onsubmit property of the form tag, this can be done as:
method="post" action="action.php">
<lable for="email">Email: </label><input type="text" value="" name="email" id="email" />
<input type="submit" value="Submit Form" />
</form>