Disable/ Enable Page Text
by JQ Purfect
HTML
<script src="http://code.jdempster.com/jQuery.DisableTextSelect/jquery.disable.text.select.js"></script>
<p class="disableSelection">try selecting me with your mouse</p>
<button id="btnToggleTextSelect">disableTextSelect()</button>
<br />
<input type="text" value="something paste here..." style="padding: 5px; color: red; width: 300px;">
JavaScript
jQuery(function($) {
$('#btnToggleTextSelect').toggle(function() {
$(this).text('enableTextSelect()');
$('.disableSelection').disableTextSelect();
}, function() {
$(this).text('disableTextSelect()');
$('.disableSelection').enableTextSelect();
});
});