What you can do, though, is to minimize your JavaScript code, so it's less readable for people inspecting it.
Sebastian
Having seen some of that "obfuscated" java script, where the script writes code into the document body for later execution, is it possible to see the "final" document / final java script that is actually run?
Sure, if the JavaScript is executed using
eval(), it should be listed within the
Location Menu inside the Script panel. If it is attached by dynamically creating a <script> tag, you'll even see it within the
HTML panel.
Sebastian