I want stop my function that run with setTimeout and do not show image followed mouse. I want do that with button click, how do that? my code:
you use timeout like >
var myTimeout = setTimeout(yourfunction);
and then you can cancel it >
clearTimeout(myTimeout);