Initialization Option Items API

skip_submit_confirmation

Specifies whether to show a confirmation dialog to learners before submitting the assessment.

You would want to specify this option to have the assessment be immediately submitted.

Examples

// Disable the submit confirmation dialog
var initializationOptions = {
    "config": {
        "navigation": {
            "skip_submit_confirmation": true
        }
    }
};

Values

Request object key config.navigation.skip_submit_confirmation

Default: false

Type boolean

Related articles

  • The onsubmit_redirect_url initialization option, which redirects the learner to the specified URL when the session has been submitted.
Was this article helpful?