Skip to content

Instantly share code, notes, and snippets.

@pwnz22
Created October 28, 2016 20:17
Show Gist options
  • Select an option

  • Save pwnz22/5854ce4c1aebd472ff5a279d29f7a1ff to your computer and use it in GitHub Desktop.

Select an option

Save pwnz22/5854ce4c1aebd472ff5a279d29f7a1ff to your computer and use it in GitHub Desktop.
prevent text from being selectable
$('p.descr').attr('unselectable', 'on')
.css('user-select', 'none')
.on('selectstart', false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment