Skip to content Skip to sidebar Skip to footer

Protect Javascript Code From Copying

Possible Duplicate: How can I obfuscate JavaScript? I have some complex Jquery/Javascript code wich i want to protect from reading. Is there a possibility to put the code in a m

Solution 1:

No, and for a good reason: users should always have control over what's executed in their user agents. Why don't you just minify and obfuscate the code?

Solution 2:

No, if the Javascript is executed in the browser the source can be read.

Post a Comment for "Protect Javascript Code From Copying"