Book Image

Learning Dojo

By : Peter Svensson
Book Image

Learning Dojo

By: Peter Svensson

Overview of this book

<p>Dojo is a popular AJAX-specific open-source JavaScript framework for building powerful web applications. It provides a well conceived API and set of tools to assist you and fix the issues experienced in everyday web development. Your project size is no concern while using Dojo. It is the best scalable solution to all your size-related issues.<br /> <br />This book starts by giving you tips and tricks for programming with JavaScript. These tricks will help you with Dojo. With every chapter, you will learn advanced JavaScript techniques. You will learn to leverage Dojo for a clean web application architecture using JSON or XML.</p>
Table of Contents (13 chapters)
Learning Dojo
Credits
About the Author
About the Reviewer
Preface
Free Chapter
1
Introduction to Dojo

Chapter 2. Useful JavaScript and Dojo Tricks

The history of JavaScript is a bit convoluted. It was first released as LiveScript by Netscape, but was later renamed to JavaScript in the December 1995 release of the Netscape Navigator 2.0B3 browser, which also had support for Java applets. This is thought to have been a deciding factor for the name change.

Unfortunately, JavaScript and Java have very little in common, and the name has led to quite a lot of confusion over the years. JavaScript 1.1 was standardized by the European Computer Manufacturers Association (ECMA) (see http://www.ecma-international.org/memento/index.html).

Microsoft has created its own variant of JavaScript called JScript. JavaScript 1.5 and JScript 5.5 are conformant with ECMAScript version 3.

For more information about the history of JavaScript, see the wiki page at http://en.wikipedia.org/wiki/JavaScript.

It was actually used on the server in one of its earliest incantations by Netscape, but server-side JavaScript has...