Version compl�te: jsB@nk » Sécurité » Désactiver la sélection de texte
URL: https://www.javascriptbank.com/disable-text-selection.html
Utilisez ce script pour désactiver la sélection de texte sur une page. C'est très simple avec deux de ses modèles à événements JavaScript pour annuler la sélection avant qu'il ne commence. Vous pouvez même attacher les événements à un élément spécifique.
Version compl�te: jsB@nk » Sécurité » Désactiver la sélection de texte
URL: https://www.javascriptbank.com/disable-text-selection.html
<script language="javascript">// Created by: James Nisbet (morBandit) :: http://www.bandit.co.nz/window.onload = function() { document.onselectstart = function() {return false;} // ie document.onmousedown = function() {return false;} // mozilla}/* You can attach the events to any element. In the following exampleI'll disable selecting text in an element with the id 'content'. */window.onload = function() { var element = document.getElementById('content'); element.onselectstart = function () { return false; } // ie element.onmousedown = function () { return false; } // mozilla}</script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<p id=content><b>You can not select text in this section because of this script</b></p><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->