I'm currently developing a web application and since it has access to a database underneath require the ability to disable Developer tools from Safari, Chrome and Internet explorer and Firebug in Firefox and all similar applications. Is there a way to do this? Thanks in advance.
Note: The ajax framework provided by the database requires that any thing given to the database be in web paramaters that can be modified and that anything it returns back be handled in javascript therefore when it returns a value like whether or not a user has access to a certain part of the website it has to be handled in javascript which developer tools can then rip the code out and allow access anyways. So this is required.
UPDATE: For those of you still thinking im making bad assumptions I did ask the vendor below is their response
Here are some suggestions for ways of mitigating the risk:
1) Use a javascript Obfuscator to obfuscate the code and only provide the obfuscated version with the sold application; keep the non obfuscated version for yourself to do edits. Here is an online obfuscator: How can I obfuscate JavaScript? http://en.wikipedia.org/wiki/Obfuscated_code http://javascriptobfuscator.com/default.aspx
2) Use a less descriptive name; maybe 'repeatedtasks.js' instead of 'security.js' as 'security.js' will probably stand out more to anyone looking through this type of information as something important.