Skip to content

Instantly share code, notes, and snippets.

@voxpelli
Created August 4, 2014 17:35
Show Gist options
  • Save voxpelli/fbe3c1c541f233276ecb to your computer and use it in GitHub Desktop.
Save voxpelli/fbe3c1c541f233276ecb to your computer and use it in GitHub Desktop.
Less annyoing auto-select in readonly textarea content (with purpose of making it _easier_ to copy&paste stuff – not harder)
$('textarea[readonly]').on('mouseup', function () {
if (document.activeElement === this && this.selectionStart === this.selectionEnd) {
$(this).select();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment