Showing posts with label Web Technologies. Show all posts
Showing posts with label Web Technologies. Show all posts

Tuesday, June 9, 2020

Read only Blog

How to create read only blogger pages

If right click this page, you get the message "Function Disabled!". It is due to the below script.

METHOD 1 BY USING JAVA SCRIPT

<script language=JavaScript>

var message="Function Disabled!";

function clickIE4(){
if (event.button==2){
alert(message); return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu = new Function("alert(message);return false")
</script>

METHOD 2 BY USING CSS

body {
-webkit-user-select:none;
-html-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}

Hot Topics