July 2013
Intermediate to advanced
382 pages
6h 56m
English
You know that JavaScript programs need a host environment. Most of what you learned so far in this book was related to core ECMAScript/JavaScript and can be used in many different host environments. Now, let's shift the focus to the browser, since this is the most popular and natural host environment for JavaScript programs. In this chapter, you will learn about the following elements:
XMLHttpRequest objectTo include JavaScript in an HTML page, you need to use the <script> tag as follows:
<!DOCTYPE>
<html>
<head>
<title>JS test</title>
<script src="somefile.js"></script>
</head>
<body>
<script>Read now
Unlock full access