Here is a little piece of code that will disable the right click feature from CodeLifter.com. It does work...You might want to check the website for a updated version
============================================================ Script: Basic No-Right-Click Script Functions: Blocks right-click on mouse and shows alert box Browsers: NS & IE 4.0 & later; degrades gracefully Author: etLux ============================================================ Put the following script in the head of your page: <script language="Javascript1.2"> // (C) 2000 www.CodeLifter.com // http://www.codelifter.com // Free for all users, but leave in this header // Set the message for the alert box am = "This function is disabled!"; // do not edit below this line // =========================== bV = parseInt(navigator.appVersion) bNS = navigator.appName=="Netscape" bIE = navigator.appName=="Microsoft Internet Explorer" function nrc(e) { if (bNS && e.which > 1){ alert(am) return false } else if (bIE && (event.button >1)) { alert(am) return false; } } document.onmousedown = nrc; if (document.layers) window.captureEvents(Event.MOUSEDOWN); if (bNS && bV<5) window.onmousedown = nrc; </script> ============================================================ -----Original Message----- From: Balaji M (CTC) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 8:05 AM To: [EMAIL PROTECTED] Subject: Doubt regarding hiding of Tool Bars Hello all, I want to disable the save as option and also the view source option. Is there any means by which it can be done. Regards, Balaji M AIG CLAIMS CBD Analysis Phone No : (044) 6256437. Ext: 378 =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com
