Glad to have more Javascript support! I noticed that a couple of Auto Complete entries use the wrong case: "image" and "object" should be "Image" and "Object" (there might be others with the wrong case, but I didn't check the whole list).
Code: Select all
var myImg = new image();  // Lower case "i" causes error
var myImg = new Image();  // Works as it should