Skip to content

Instantly share code, notes, and snippets.

@samleb
Created September 3, 2010 08:46
Show Gist options
  • Select an option

  • Save samleb/563624 to your computer and use it in GitHub Desktop.

Select an option

Save samleb/563624 to your computer and use it in GitHub Desktop.
document.onmouseup = function(e) {
e = e || window.event;
var element = e.target || e.srcElement;
if (element.getAttributeNode('data-autoselect')) element.select();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment