Java Reference
In-Depth Information
In a JavaScript-enabled browser, clicking the link results in a new window containing the pro_ajax_
details.htm page, and because the onclick handler returns false, the browser does not navigate the
main window to the page defi ned in the link's href attribute. However, in browsers that have JavaScript
disabled, the browser ignores and does not execute the code within the link's onclick event handler,
thus navigating the user's browser to the topic details page because it is defi ned in the href attribute.
You now need to create the two details pages, both plain HTML.
<!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 ASP.NET 2.0</title>
</head>
<body>
<h3>Professional Ajax, 2nd Edition</h3>
<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>
Save this as pro_ajax_details.htm.
<!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>
<strong>Subjects</strong><br />
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 in-depth knowledge of the languages.
</p>
Search WWH ::




Custom Search