ACCU Home page ACCU Conference Page
Search Contact us ACCU at Flickr ACCU at GitHib ACCU at Facebook ACCU at Linked-in ACCU at Twitter Skip Navigation

Search in Book Reviews

The ACCU passes on review copies of computer books to its members for them to review. The result is a large, high quality collection of book reviews by programmers, for programmers. Currently there are 1949 reviews in the database and more every month.
Search is a simple string search in either book title or book author. The full text search is a search of the text of the review.
    View all alphabetically
Title:
Designing with JavaScript
Author:
N Heinle
ISBN:
1 56592 300 6
Publisher:
O'Reilly
Pages:
241pp+CD
Price:
£21-95
Reviewer:
Brian Bramer
Subject:
javascript
Appeared in:
10-3
Although JavaScript looks like Java with many similar capabilities and common operators and expressions it is an OO based scripting language developed by Netscape for creating dynamic web pages. JavaScript source code is embedded in HTML pages and interpreted by the browser (Java code is compiled and executed by the Java Virtual Machine).

This is not a 'traditional' programming text. It assumes readers are web page designers used to HTML (but not programmers) who wish to add functionality to their web pages. It looks at a facility or effect to be added to a web page and shows you how to do it (explaining the operators, statements, etc. as it goes along). For example, Chapter 1 starts by modifying a HTML page so when the mouse is moved over a link a message is displayed in the status bar, i.e. adding some JavaScript to detect the onMouseOver event and then setting the window status appropriately. The second example is a script which detects the time of date and changes the web page contents. The book continues in this way creating new windows, remote control, creating frames, implementing functions, using arrays, dynamic images, etc. There are plenty of useful programs which the text discussing each line in detail. The problems of customisation are discussed allowing one to detect the browser, the platform and what plug- ins are available, i.e. so the web page can adapt to the clients environment.

A useful book for the web page designer who does not wish to tackle Java programming but wishes to make pages adaptable and dynamic.