Nieuw lid |
|
Solved! Bedankt mensen
function selectStop() {
document.onmousedown = function() {
return false;
}
document.onselectstart = function() {
return false;
}
document.onmousemove = function() {
return false;
}
}
function selectStart() {
document.onmousedown = function() {
//nothing
}
document.onselectstart = function() {
//nothing
}
document.onmousemove = function() {
//nothing
}
}
function selectStop() { document.onmousedown = function() { return false; } document.onselectstart = function() { return false; } document.onmousemove = function() { return false; } } function selectStart() { document.onmousedown = function() { //nothing } document.onselectstart = function() { //nothing } document.onmousemove = function() { //nothing } }
Werkt zeker in IE 7 en FF 2, andere browsers moet ik nog testen.
Notes:
-Het onmousemove event blijkt nodig in IE voor selectie, FF heeft het niet nodig
-De functies met alleen een comment blijken ook nodig.
-In FF zal reeds geselecteerde text geselecteerd blijven, in IE niet.
-Jullie links hebben me op het goede spoor gezet, veel dank daarvoor. |