Skip to content

Instantly share code, notes, and snippets.

@neodigm
Created January 10, 2022 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neodigm/e0526e2ffe3ef73e7030d9a1382f67e3 to your computer and use it in GitHub Desktop.
Save neodigm/e0526e2ffe3ef73e7030d9a1382f67e3 to your computer and use it in GitHub Desktop.
var simuClick = function (elem) {
var evt = new MouseEvent("click", {
bubbles: true,
cancelable: true,
view: window
});
var canceled = !elem.dispatchEvent(evt);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment