Skip to main content Skip to navigation

Step 3: Specify learning objectives if required

3.1 At this point you need to decide if you want to specify a list of learning objectives for the form.

3.1.a If you do not want to have a list of learning objectives you need to delete the following code from the form code:

var lobjs = new Array();
lobjs[0] = "This is the first learning objective.";
lobjs[1] = "This is the second learning objective.";
lobjs[2] = "This is the third learning objective.";

3.1.b If you do want to specify a list, you need to replace the list that is in the example code with your own list.

To create the list, you need to have each learning objective declared in this form:

lobjs[0] = "This is the first learning objective.";

With the number in brackets increasing by one each time (starting at 0). Make sure that you delete any of the example learning objectives that are not required.



Next Step...