Skip to content

Instantly share code, notes, and snippets.

@imbcmdth
Last active August 29, 2015 13:57
Show Gist options
  • Save imbcmdth/9521874 to your computer and use it in GitHub Desktop.
Save imbcmdth/9521874 to your computer and use it in GitHub Desktop.
window.addEventListener('load', getRequestForEditor);
var events = ['change', 'contextmenu', 'select', 'keypress', 'dblclick', 'click', 'mousedown', 'mouseup', 'mousewheel', 'scroll'];
function bindEvent (eventName) {
this.addEventListener(eventName, getRequestForEditor);
}
events.forEach(bindEvent, document.getElementById("selContentType"));
events.forEach(bindEvent, document.getElementById("selTheme"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment