Wednesday, 7 May 2014

Hide Source Code of Web Pages

<!DOCTYPE html>
<html>
<head>
<!-- Code to prevent use of Ctrl+U -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(document).on('keydown',function(e)
{
    var key = e.charCode || e.keyCode;
    if(key == 17 || key == 85)
        {
e.preventDefault();
}
});
</script>
</head>
<!-- Use oncontextmenu="return false" to disable right-click -->
<body oncontextmenu="return false">
<h2>Coding Redefined</h2>
</body>
</html>