можно немного подругому вызывать попробывать, хотя кривовато конечно.
if (typeof Function.prototype.bind=="undefined"){
Function.prototype.bind=function(self,func){
return function(){
func.apply(self,arguments);
}
}
}
и юзать
$('#element').on('click', this.clickHandler.bind(this,this.clickHandler)) ;
масло маслянное получается,
но работать вроде должно