Difference between revisions of "JavaScript"
From Market Ruler Help
(Created page with 'JavaScript is a scripting language that looks like Java, but is not Java-based (and not to be confused with it). Its standardized name is ECMAScript. It was designed to be easy t...') |
(type no longer needed) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | JavaScript is a scripting language that looks like Java, but is not Java-based (and not to be confused with it). Its standardized name is ECMAScript. It was designed to be easy to work with for non-programmers, and is currently one of the most popular programming languages on the web. | + | JavaScript is a [[scripting language]] that looks like Java, but is not Java-based (and not to be confused with it). |
+ | |||
+ | Its standardized name is [http://www.ecmascript.org/ ECMAScript]. It was designed to be easy to work with for non-programmers, and is currently one of the most popular programming languages on the web. | ||
+ | |||
+ | [[ConversionRuler]]'s [[Tracking Snippets]] are a mixture of '''Javascript''' and [[HTML]], and contain an [[Image Bug]] to track visitors who do not have [[Non-JavaScript Web Browsers|JavaScript enabled]]. | ||
+ | |||
+ | JavaScript appears on web pages between '''script''' tags: | ||
+ | |||
+ | <code> | ||
+ | <script><br /> | ||
+ | ... JavaScript goes here ...<br /> | ||
+ | </script> | ||
+ | </code> | ||
+ | |||
+ | == Related == | ||
+ | * [[Non-JavaScript Web Browsers]] | ||
+ | * [[How does JavaScript run on a web page?]] | ||
+ | |||
+ | [[Category:Glossary]] |
Latest revision as of 16:57, 17 May 2018
JavaScript is a scripting language that looks like Java, but is not Java-based (and not to be confused with it).
Its standardized name is ECMAScript. It was designed to be easy to work with for non-programmers, and is currently one of the most popular programming languages on the web.
ConversionRuler's Tracking Snippets are a mixture of Javascript and HTML, and contain an Image Bug to track visitors who do not have JavaScript enabled.
JavaScript appears on web pages between script tags:
<script>
... JavaScript goes here ...
</script>