In this chapter Beginning JavaScript with DOM Scripting and Ajax, you'll learn what DHTML was, why it is regarded as a bad way to go nowadays, and what modern techniques and ideas should be used instead.
Javascript DOM and Nodes JavaScript / DHTML and DOM
What exactly is the DOM? The Document Object Model is a platform that allows scripts to access and manipulate the content, structure and style of a web document. Dynamic HTML, a combination of Javascript, Cascading Style Sheets, and HTML used to animate webpages, relies entirely on the DOM.
DOM (Document Object Model) Reference JavaScript / DHTML and DOM
The DOM (Document Object Model) gives you generic access to most elements, their styles and attributes in a document. This is a no-nonsense, easy to follow DOM reference for JavaScript.
AJAX Tutorial For Beginners JavaScript / AJAX
What is AJAX? AJAX stands for Asynchronous JavaScript and XML. AJAX uses a combination of Javascript and XML to allow web pages to be updated with new data from the server. It consists of HTML, JavaScript, DHTML, and DOM. The traditional way of processing data between client's browser and a server was to submit a HTML form and send data to the server, the server processed the data and sent a response back to the browser.
SmartWebby's Guide to Simple Dynamic HTML (DHTML) JavaScript / DHTML and DOM
This javascript guide is especially for those who are trying their best to learn DHTML by dissecting code written by others and for people who don't know much about programming but are interested in making their web sites look Dynamic with simple add-ons.
Table Object Methods JavaScript / DHTML and DOM
The Table object of the DOM supports a handful of unique properties and methods to help you easily perform tasks like dynamically generate a table or certain rows/columns. This is on top of the standard DOM Element properties/ methods the Table object has access to.
Table Object Properties JavaScript / DHTML and DOM
The Table object of the DOM supports a handful of unique properties and methods to help you easily perform tasks like dynamically generate a table or certain rows/columns. This is on top of the standard DOM Element properties/ methods the Table object has access to.
Text Link Color Flips with DHTML JavaScript / DHTML and DOM
How to change the color of a hypertext link when the mouse passes over. Before the advent of DHTML, about the best answer I could give to get this effect was to make the link an image and get the effect.