Text selection disable javascript & Opera Browser
While the script works fine on all browsers except Opera Browser. Input fields and drop down menu becomes unclickable, how to fix it?
My example page:
http://www.aymavisi.org/makale/Evlil...20Gibran).html
Head:
Code:
<script type="text/javascript">
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
target.style.MozUserSelect="none"
else //All other route (ie: Opera)
target.onmousedown=function(){return false}
target.style.cursor = "default"
}
</script>
Body:
Code:
<script type="text/javascript">
disableSelection(document.body)
</script>
<script type="text/javascript">
var somediv=document.getElementById("layer1")
disableSelection(somediv)
</script>
P.S
You can choose install Opera as portable in installation options.