Search
Recommended Products
Related Links


 
 

 

 

Informative Articles

Award winning SEM agency bigmouthmedia hires Senior Search Strategist from iProspect
Bigmouthmedia has appointed Karin McLean to the newly created role of Operations Manager, McLean was previously Search Strategist at Massachusetts-based Search Marketing firm iProspect. The appointment marks another significant growth phase...

Benefits of making your website accessible to disabled users – part 1: increase in reach
The Disability Discrimination Act states that service providers must not discriminate against disabled people. A website is regarded as a service and therefore falls under this law. Some organisations are changing their websites, but many are...

Building Printer Friendly Pages
Your site looks like it's working perfectly. You've tested it with several different browsers under various resolutions. The HTML complies with the standards and your CSS is impeccable. Even if all of the above statements are accurate, everything...

CSS Browser Detection - The complete guide
Different browsers, different CSS interpretations! There will be a time when you'll need to hide some CSS rules from a particular browser, or even all the CSS file! In this articles I'll try to compile all possible types of Browser detection...

First-rate Tools for your Web Authoring
Indeed, if you want to make your mark in the wide, wide Web, you would not need an expensive software package to create and post your very own Website. Even if you don’t have money to spare, many HTML editors and FTP clients are available that does...

Good Web Design
"There are two types of web sites. There are those web sites you date, like 'The Data Was Lost Collective...' ...and then...there are those web sites you marry, like Yahoo! The trick is not to confuse the two." Many web designers get confused...

How to buy a laptop - buyers guide notes
Laptops are always a difficult thing to buy because there is such a wide choice and so many different prices and then there's the technical specifications to get your head around.. nightmare! So here's some ideas from the technical side of things,...

How to set up a professional website on your own using web templates
To create professional websites is not an easy task by any means. There are many things that you got to take into consideration like easy navigation, strategic links, clean coding, professional layout, easy downloading, scanability, usability and...

"I'm just me" - An Overview of an Web er.. Designer, Developer, Consultant and Friend.
I am going to give you a breakdown of my ... er ... work ... playtime .... income .... I'm a UK based Web Designer, Web Developer, Internet Consultant. I build websites, content management systems and internet solutions for anybody who can afford...

Web Design Mistakes - Text and Fonts
This article may be published electronically or in print, free of charge, without alteration to any content and the resource box at the end of the article is included in it's entirety without alteration. A courtesy copy of your publication would be...

 
 
 
DHTML-Introduction

Think of DHTML as not a singular technology but a combination of three
existing technologies glued together by the Document Object Model (DOM):

1. HTML - For creating text and image links and other page elements.

2. CSS - Style Sheets for further formatting of text and html plus other
added features such as positioning and layering content.

3. JavaScript - The programming language that allows you to accesses and
dynamically control the individual properties of both HTML and Style Sheets.

The way JavaScript accesses the properties of an HTML document is through
the Document Object Model (DOM). The job of the DOM is to expose all the
attributes of HTML and Style sheets to JavaScript control. All you need to
know about the DOM is what JavaScript commands it accepts. Not that easy,
as different browsers have their slightly different versions of the DOM, so
they access HTML properties differently as well as display them differently.

So how do you locate an HTML element on a page and change its property?
This is the job of JavaScript. Obviously, I cant into all the details of
JavaScript or the DOM, but here is an example of how JavaScript can change a
visibility of a style sheet layer in both browsers.

Note: That every piece of HTML has a location much like a directory in a
phone book. When finding that piece of HTML you have to go through the same
hierarchy process of searching for a name in the phone book such as

(state) Washington -> (City) Seattle -> (Listings) j -> (Name) Jessica

In JavaScript, a reference to this would be equivalent to

washington.seattle.j.jessica

Now Jessica may have additional information such as her address and phone
number, so the JavaScript reference would be written this way.

washington.seattle.j.jessica.address

or

washington.seattle.j.jessica.phone

Lets transcribe the above metaphor to a DHTML document that contains a

 



layer [myLayer] with style attributes
[top,left,width,height,z-index,visibility,etc] and the layer contains a bit
of text "myText" (Note that the visibility attribute is set to hidden)

100px; height: 100px; z-index: 3; visibility: hidden;">
myText


In Netscape the address to the DIV layer "myLayer" is

document.myLayer

in Explorer it is

document.all.myLayer.style

The W3C way of identifying the address is

document.GetElementById(‘myLayer’).style

To access the properties such as visibility under "myLayer" you would use
these addresses.

Netscape

document.myLayer.visibility

Explorer

document.all.myLayer.style.visibility

W3C

document.getElementById(‘myLayer’).style.visibility

To change the visibility of this layer you would assign a value to your
JavaScript address.

Netscape

document.myLayer.visibility = "visible";

Explorer

document.all.myLayer.style.visibility = "visible";

W3C

document.getElementById(‘myLayer’).style.visibility=”visible”;

Now the previously hidden layer is now visible. This is essentially how
DHTML works, but understand there are hundreds and hundreds of attribute
properties for text, images, documents and windows. Not all these
properties are supported in both browser and sometime accessing a property
requires a few more hurdles, but if you stick to the common denominator
properties both browser use then life it a bit easier. I recommend the
excellent DHTML reference book Dynamic HTML - The Definitive Guide by Danny
Goodman (O'Riley Books) It lists all of the DHMTL properties and their
cross browser compatibilities.

About the Author

Eddie Traversa
DHTML Nirvana http://nirvana.media3.net/ is a site
dedicated to exploring the possibilites of DHTML. It hosts free graphics,
dhtml templates and tutorials. Some of the tutorials emphasis is on
Flash/DHTML integration.