> If I make a long jQuery script, and when the webpage is loaded, when we look
> at the source code, then everyone will be able to see the jQuery script. Are
> there any ways to get this hidden. I wanna hide these scripts for SEO reason
> as well...

Why don't you put your code in a .js file that you include in your
html with the <script> tag ?
If your goal is to forbid people to have a look at your code in any
circumstance then you must keep in mind that it's just impossible. All
you can do is obfuscation but it will never stop someone to see your
code.
You must keep in mind that everything running on the client can be
figured out by anyone who wants to take a deeper look into it. (Even
flash's action script can be decompiled) Thinking like this will also
improve the way you manage security in your apps.

-- 
Fabien Meghazi

Website: http://www.amigrave.com
Email: [EMAIL PROTECTED]
IM: [EMAIL PROTECTED]

Reply via email to