Skip to content Skip to sidebar Skip to footer

Disable Save & Save As Option In All Browsers Using Javascript

I want to disable Save As and Save options in all browsers (like Internet Explorer, Chrome, Firefox, Opera, etc). I have already disabled right click on my web page. The code is he

Solution 1:

I want to disable save as and save options in all Browsers,

You can't.

i have already disable right click

Not very effectively.


DRM doesn't work well in systems that are designed to support it (e.g. DVD players). It is much less effective in systems that are not designed to support it (e.g. web browsers).

Solution 2:

By opening your webpage the user has already downloaded it - it is impossible to make a webpage that can be viewed, but not saved.

Of course, you can block some methods, as you have - you can even use some complex ajax or flash to really screw with them. But in the end there will always be a way around it. I suggest you look for a different approach to keeping your data where you want it. For example, if the issue is that people are "stealing" your images, you could watermark them.

Post a Comment for "Disable Save & Save As Option In All Browsers Using Javascript"