// object array
// Analysis
var object = new Array();
object[0] = "button";
object[1] = "check";
object[2] = "form";
object[3] = "hidden";
object[4] = "pass";
object[5] = "radio";
object[6] = "reset";
object[7] = "select";
object[8] = "submit";
object[9] = "text";
object[10] = "ta";

This section of code creates the object array. The object array is used to define the order in which to browse the objects and examples.

Close Window