I\'m trying to remove an event listener inside of a listener definition:
canvas.addEventListener(\'click\', function(event) {
click++;
if(click == 50
If someone uses jquery, he can do it like this :
var click_count = 0;
$( "canvas" ).bind( "click", function( event ) {
//do whatever you want
click_count++;
if ( click_count == 50 ) {
//remove the event
$( this ).unbind( event );
}
});
Hope that it can help someone. Note that the answer given by @user113716 work nicely :)