Saturday 10 September 2011

Link Button

  The link is  http://bloggersmashers.blogspot.com Find it out in the code the enter your URL. Then Change the "Good Boy" Into your button's text.

Example:




 Embed Code:


<FORM>
<INPUT TYPE="BUTTON" VALUE="Home Page" ONCLICK="window.location.href='http://www.computerhope.com'">
</FORM>

Sunday 4 September 2011

HTML/Javascript

How to Disable Right-click on Blogger

Go to Design>
Click Ädd A Gadget>
Choose HTML/Javascript

Enter the code witten below:

<script language="JavaScript">
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

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>
__________________________________________________________________________________