DHTML - meaning and definition. What is DHTML
Diclib.com
Online Dictionary

What (who) is DHTML - definition

UMBRELLA TERM FOR A COLLECTION OF TECHNOLOGIES (E.G., HTML, JAVASCRIPT, CSS AND DOM) USED TOGETHER TO CREATE INTERACTIVE AND ANIMATED WEB SITES
DHTML; Dynamic html; DOM Scripting; Dhtml

DHTML         
Dynamic HyperText Markup Language (Reference: HTML)
DHTML         
Dynamic HTML         
<language, World-Wide Web> (DHTML) The addition of JavaScript to HTML to allow web pages to change and interact with the user without having to communicate with the server. JavaScript allows the behaviour of the page to be controlled by code that is downloaded with the HTML. It does this by manipulating the Document Object Model (DOM). The term DHTML is often also taken to include the use of "style" information to give finer control of HTML layout. The style information can be supplied as Cascading Style Sheets (CSS) or as "style" attributes (which can be manipulated by JavaScript). Layers are often also used with DHTML. Both the JavaScript and style data can be included in the HTML file or in a separate file referred to from the HTML. Some web browsers allow other languages (e.g. VBScript or Perl) to be used instead of JavaScript but this is less common. DHTML can be viewed in Internet Explorer 4+, Firefox and Netscape Communicator 4+ but, as usual, Microsoft disagree on how DHTML should be implemented. The {Document Object Model} Group of the World Wide Web Consortium is developing standards for DHTML. http://w3c.org/DOM/. (2005-10-17)

Wikipedia

Dynamic HTML

Dynamic HTML, or DHTML, is a term which was used by some browser vendors to describe the combination of HTML, style sheets and client-side scripts (JavaScript, VBScript, or any other supported scripts) that enabled the creation of interactive and animated documents. The application of DHTML was introduced by Microsoft with the release of Internet Explorer 4 in 1997.

DHTML allows scripting languages to change variables in a web page's definition language, which in turn affects the look and function of otherwise "static" HTML page content after the page has been fully loaded and during the viewing process. Thus the dynamic characteristic of DHTML is the way it functions while a page is viewed, not in its ability to generate a unique page with each page load.

By contrast, a dynamic web page is a broader concept, covering any web page generated differently for each user, load occurrence, or specific variable values. This includes pages created by client-side scripting and ones created by server-side scripting (such as PHP, Python, JSP or ASP.NET) where the web server generates content before sending it to the client.

DHTML is the predecessor of Ajax and DHTML pages are still request/reload-based. Under the DHTML model, there may not be any interaction between the client and server after the page is loaded; all processing happens on the client side. By contrast, Ajax extends features of DHTML to allow the page to initiate network requests (or 'subrequest') to the server even after page load to perform additional actions. For example, if there are multiple tabs on a page, the pure DHTML approach would load the contents of all tabs and then dynamically display only the one that is active, while AJAX could load each tab only when it is really needed.

Examples of use of DHTML
1. Web widgets often consist of DHTML, JavaScript or Adobe Flash mini–programs.