Skip to content

Instantly share code, notes, and snippets.

@al5dy
Created August 11, 2016 06:05
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 al5dy/02f1d63f5ade7a876f94f129a84f8c45 to your computer and use it in GitHub Desktop.
Save al5dy/02f1d63f5ade7a876f94f129a84f8c45 to your computer and use it in GitHub Desktop.
Выделяем всю область контента при одном нажатии.
$(document).on('click', '.multitext', function () {
var range = document.createRange();
range.selectNodeContents(this);
window.getSelection().addRange(range);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment