Entry using a value of Resume


Your Code

var entryState = GetValue ( "cmi.entry" );

if ( entryState == "ab-initio" )
{
     alert( "Welcome to the Human Resources Training
             New Employee Orientation!" );
}
else if ( entryState == " " )
{
     alert( "Welcome to the Human Resources Training
             New Employee Orientation!
             Please continue with the training." );
}


Code Example

var entryState = GetValue ( "cmi.entry" );

if ( entryState == "ab-initio" )
{
     alert( "Welcome to the Human Resources Training
             New Employee Orientation!" );
}
else if ( entryState == "resume" )
{
     alert( "Welcome to the Human Resources Training
             New Employee Orientation!
             Please continue with the training." );
}