Java Reference
In-Depth Information
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<title>Professional ASP.NET 2.0</title>
</head>
<body>
<h3>Professional Ajax, 2nd Edition</h3>
<form name=”form1” action=”“>
<input type=”button” value=”Add to basket” name=”btnAddBook”
onclick=”window.opener.addBookToBasket(0)” />
</form>
<strong>Subjects</strong><br />
Ajax<br />
Internet<br />
JavaScript<br />
ASP.NET<br />
PHP<br />
XML<br />
<hr color=”#cc3333” />
<h3>Book overview</h3>
<p>
A comprehensive look at the technologies and techniques used in Ajax,
complete with real world examples and case studies. A must have for
any Web professional looking to build interactive Web sites.
</p>
</body>
</html>
Finally, you create the pro_js_details.htm page. Again, it is identical to the version created in the
example, with a form and button to add the topic to the shopping basket, as in the pro_ajax_details
.htm page. The highlighted portion of the following code shows the changes made to this fi le:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<title>Professional JavaScript</title>
</head>
<body>
<h3>Professional JavaScript, 2nd Edition</h3>
<form name=”form1”>
<input type=”button” value=”Add to basket” name=”btnAddBook”
onclick=”window.opener.addBookToBasket(1)” />
</form>
<strong>Subjects</strong>
ECMAScript<br />
Internet<br />
JavaScript
<br />
XML and Scripting<br />
<hr color=”#cc3333” />
<p>
This topic takes a comprehensive look at the JavaScript language
and prepares the reader with in-depth knowledge of the languages.
</p>
Search WWH ::




Custom Search