Pregunta

Hi I found this webpage today: http://www.snopes.com/inboxer/hoaxes/sister.asp

I couldn't figure out how it disable text selection. It's neither the conventional CSS or javascript method. Do anyone know how it disable the text selection?

¿Fue útil?

Solución

Look in the Javascript source:

<!--
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
  if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
    return false
}

function reEnable(){
  return true
}

if (typeof document.onselectstart!="undefined")
  document.onselectstart=new Function ("return false")
else{
  document.onmousedown=disableselect
  document.onmouseup=reEnable
}
-->

When the user attempts to start a selection, onselectstart, it simply returns false, which disables the feature.

Otros consejos

Try this simple Javascript method.

document.onselectstart = function() { return false; }
document.onmousedown = function() { return false; }
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top