-1

Possible Duplicate:
How can I obfuscate JavaScript?

I want my js not to be understood by anyone. I have read some similar posts on this site but can get an exe or a full desktop application for it. Whatever I get are online tools.

OR how to sense '\n' character in js?

Community
  • 1
  • 1
user1079065
  • 2,085
  • 9
  • 30
  • 53
  • What's wrong with using an online tool? – Simon Forsberg Dec 06 '12 at 12:38
  • You may find these questions helpful: [How can I obfuscate JavaScript](http://stackoverflow.com/questions/194397/how-can-i-obfuscate-javascript) and [Does JavaScript obfuscation provide much intellectual property protection for your code?](http://stackoverflow.com/questions/4252484/does-javascript-obfuscation-provide-much-intellectual-property-protection-for-yo) – Henrik Aasted Sørensen Dec 06 '12 at 12:43

2 Answers2

1

UglifyJS / UglifyJS2:

JavaScript parser / mangler / compressor / beautifier toolkit

CD..
  • 72,281
  • 25
  • 154
  • 163
0

You can download "yui compressor" to compress the javascript. But I does not means that no-one can read you scripts.

Their are again tool which make your compressed javascript files again readable :(

user160820
  • 14,866
  • 22
  • 67
  • 94