I used "version 1.3" as JS framework with ASP classic based JSCRIPT
language and I got error instead of using "1.2.5"

//We can not use:

(function(){
       this.something = ...
})()

//But we can use:

var thing = function(){
      this.something = ....
}

the error is:
"this" can not be used in function without a specific variable

and mootools version 1.3 almost based on (function(){.......})()

Reply via email to