Hello =)
I have an object which contains a method that should execute every x ms. I
can use setInterval inside the object construct like this -
self.setInterva l('ObjectName.m ethodName()', this.pinginterv al);
- but is there no way to do this without using the literal ObjectName? If I
write 'this.methodNam e()' I get "Line 1 Char 1: Object doesn't support this
property or method." in IE, and nothing happens in Firebird.
Thank you,
Daniel
I have an object which contains a method that should execute every x ms. I
can use setInterval inside the object construct like this -
self.setInterva l('ObjectName.m ethodName()', this.pinginterv al);
- but is there no way to do this without using the literal ObjectName? If I
write 'this.methodNam e()' I get "Line 1 Char 1: Object doesn't support this
property or method." in IE, and nothing happens in Firebird.
Thank you,
Daniel
Comment