Javascript Hide
You can "hide" some content preventing from prying eyes by placing it in a .js file. You should note that people will still be able to see your script if they view the .js file.
<html>
<head>
<title></title>
</head>
<body>
<script language="JavaScript" src="file.js">
</script>
etc...
Notes:
Put your JavaScript code in Notepad and save it as a normal text file, then when you upload the file rename it with a .js extention.
If you can not change the file name when uploading, you must use a hex editor to save the file with a .js extension.
|