How do you pass parameters / variables through event listeners? I\'ve overcome this problem fairly effectively using anonymous functions; which is an incredibly simple solut
If I were looking for this functionality, and I often do, I would make tempThumb a Class that carried the url property. then:
MyThumbClass(event.target).url //in the MouseEvent.CLICK handler
Strong typing, easy access, clean syntax, low complexity.