Hi,
Is it possible to pass the object 'obj' like so and still be able to access the event properties:
this.addEventListener('mousedown', this.doSomething(obj), false);
and in the function 'doSomething', still be able to access the event properties?
for example:
doSomething:function(obj, e){...