answersLogoWhite

0

Look into obfustication. I saw a program to obfusticate JavaScript some time ago, however, I don't remember what it was called.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How can one learn how to program the JavaScript confirm dialog box into their code?

There are a number of ways in which one can learn how to program the JavaScript confirm dialog box into their code. One way is by reading the relevant tutorials on the website JavaScript Kit.


Where can one learn javascript?

There are many places where one can learn JavaScript. One can go to the Code Avengers website or one can go to the Codeacademy site or one can go to the Code School site.


What is the php code to close the existing window using button?

It is not a PHP code but a Javascript code. w3schools.com has all the answers you need about Javascript. It will teach you how to use the code and implement it into your website. If you're creating your own websites I suggest you actually learn the code. It will come in handy later on.


What is a javascript tutorial?

A JavaScript tutorial contains instructions that will teach you how to code in JavaScript.


Is jQuery a high level language?

jQuery is like an advanced JavaScript code. jQuery is a JavaScript code library that gives you more features with less code that what Javascript would require. If you understand JavaScript, jQuery wouldn't be much of a change.


How can you script your ASP code in JavaScript?

Start the document with: <%@ language="javascript" %>


What 7 letter word for convert into code?

encrypt


How do you add a click event to a java button?

we can do this using of javascript. you can use this following code: <input type=button value="button" onClick=onclick_function()> here onclick_function() is a function which is called by javascript on clicking the button. javascript code is as follows: <script language="javascript" type="text/javascript"> // your code for onclick_function() function onclick_function(){ alert("Welcome to javascript"); } </script>


How do you get the popup javascript box?

Use confirm or alert in javascript code to get a popup


What is the javascript code for gaiaonline?

javascript: document.body.contentEditable = 'true'; document.designMode = 'on'; void 0


What is the HTML code for a forum on a website?

For creating a forum, only HTML is not enough. JavaScript, CSS etc also has to be included within.


What is the code for JavaScript?

JavaScript code looks like this:function sayhi(name) {alert("Hey there, "+name);}sayhi("joe");