function clickMe(e){ //e is the event }
Solution 1
function clickMe(parameter, event){ } {this.clickMe(someparameter, event)}>
Solution 2 Using the bind function is considered better, than the arrow function way, in solution 1. Note, that the event parameter should be the last parameter in the handler function
function clickMe(parameter, event){ }