Skip to content

Instantly share code, notes, and snippets.

@voising
Created June 15, 2013 23:10
Show Gist options
  • Save voising/5789946 to your computer and use it in GitHub Desktop.
Save voising/5789946 to your computer and use it in GitHub Desktop.
JS : Trigger click on element, works with IE, iPad.. #forceClick
function forceClick(strSearch) {
var el = $(strSearch).get(0);
var evt = document.createEvent("MouseEvents");
evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
el.dispatchEvent(evt);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment