<script>
jQuery(document).ready(function(){
function disableselect(e) {
return false;
};
function reEnable() {
return true;
};
document.onselectstart = new Function ("return false")
if (window.sidebar) {
document.onmousedown = disableselect
document.onclick = reEnable
};
jQuery(document).bind("contextmenu",function(e){
return false;
});
jQuery(document).bind("copy",function(e){
return false;
});
jQuery(document).bind("paste",function(e){
return false;
});
jQuery(document).bind("select",function(e){
return false;
});
});
</script>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter