Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save silverwolfceh/579305f424f48d919ed9bc54c850ff27 to your computer and use it in GitHub Desktop.
Save silverwolfceh/579305f424f48d919ed9bc54c850ff27 to your computer and use it in GitHub Desktop.
let mdown = new MouseEvent('pointerdown', { view: null, bubbles: true, cancelable: true});
let autoclick = function() {
let ele = document.getElementsByTagName('canvas');
if(ele.length > 0) {
ele[0].dispatchEvent(mdown);
}
}
setInterval(autoclick, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment