Table of Contents

< elseif >

Description

The < elseif > element is used within the conditional logic statement <if> and optional <else> element.

Syntax

<elseif
cond="ECMAScript_Expression"/>

Attributes

condThe cond attribute is the Boolean expression for the conditional logic statement. This attribute is required.

Parents

<if>

Children

None.

Extensions

None.

Limitations/Restrictions

None.

Example Code

<?xml version="1.0"?>
<vxml version="2.0" xmlns="http://www.w3.org/2001/vxml">
 <var name="card_type" expr="'amex'" />
 <form>
  <field name="card_num" type="digits">
   <prompt>What is your card number?</prompt>
   <filled>
    <if cond="card_type == 'amex' &amp;&amp; card_num.length != 15">
     American Express card numbers must have 15 digits.
     <clear namelist="card_num"/>
    <elseif cond="card_type != 'amex' &amp;&amp; card_num.length != 16"/>
     Mastercard and Visa card numbers have 16 digits.
     <clear namelist="card_num"/>
    </if>
   </filled>
  </field>
 </form>
</vxml>