A
Andrew Poulos
With this
var ax = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
//... blah
delete ax;
JSLint complains that
Problem at line 3 character 10: Expected '.' and instead saw ';'.
What's the '.' that JSLint is expecting?
Andrew Poulos
var ax = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
//... blah
delete ax;
JSLint complains that
Problem at line 3 character 10: Expected '.' and instead saw ';'.
What's the '.' that JSLint is expecting?
Andrew Poulos