Code: Select all
document.onselectstart = function() {return false} // ie
document.onmousedown = function() {return false} // mozillaCode: Select all
document.addEventListener('onselectstart ', function() {return false})Does anyone know a workaround for this?