The following website has both right click and view source disabled.
http://www.immihelp.com/visitor-visa/sponsor-documents.html
Can anyone shine some light on how this is possible?
|
The following website has both right click and view source disabled. http://www.immihelp.com/visitor-visa/sponsor-documents.html Can anyone shine some light on how this is possible? |
|||
| show 6 more comments |
They fooled you. Just scroll down in view-source. Furthermore, employing such tactics marks you as unprofessional. Don’t do it. |
|||||||||||||||
|
|
They do this with some basic javascript, but this does not actually hide your HTML source! In many browsers you can simply go to view->source on the menu. Even if you couldn't, it is trivial to simply load up a debugging proxy like Fiddler, or packet-sniff the connection. It is impossible to effectively hide the HTML, JavaScript, or any other resource sent to the client. Impossible, and isn't all that useful either. Furthermore, don't try to disable right-click, as there are many other items on that menu (such as print!) that people use regularly. |
|||
|
|
|
Hiding HTML source isn't really possible. Disabling right-click only frustrates users who wish to do something constructive with your content (copy/paste content or forms, or print, for example). If you're running a server-side scripting language you could obfuscate or minify the HTML, CSS and Javascript. This will make it harder for someone to copy your code or see how you've achieved certain effects. |
|||
|
|
|
You can still view the source on the website by going to View > Page Source from the toolbar in firefox. Or View > source in IE. The left-click is disabled via javascript. The source for the javascript is: |
|||
|
|
|
It's a horrible thing to do, as everybody else has said, but if you really are intent on doing it, use this code, and put a load of returns at the top of the page's source:
|
|||
|
|
|
Believe me, no one wants your source as much as you may think they do. When you decided to develop web pages, you became an open source developer. It's not possible to disable viewing a pages source. You can attempt to circumvent unknowledgeable users from seeing the source, but it won't stop anyone who understands how to use menu's or shortcut keys. Your best bet is to develop your site in a manner that will not be compromised by someone seeing your source. If you're attempting to hide it for any other reason than to protect your intellectual property, then you're doing something wrong. |
|||
|
|
|
You potentially can not prevent user from viewing the html source content. The site that you have listed prevents user from rightclick. but Fact is you can still do |
|||||
|
|
View source is not disabled in my browser (Chrome). But they have added a lot of blank lines to the source, so you have to scroll down to view it. Try to scroll down and you will see. the disabled right click is possible with javascript, but dont do it. Its very irritating for the user. |
|||
|
|
|
You can use JavaScript to disable the context menu (right-click), but it's easily overwrittable. For example, in Firefox, go to Options -> Content and next to the "Enable JavaScript" check box, click Advanced. Uncheck the "Disable or replace context menus" option. Now you can right-click all you want. A simple |
|||
|
|
:)– Šime Vidas Jul 6 '11 at 13:34