Purchase Advertising On AWT
 Upload & Sell Your Software
 Upload & Sell Your eBook
 Enter The AWT Control Panel  Contact Applied Web Tools
 Sell Your eBook @ The Book Store  Password Troubles? Click Here!
Knowledge Center
Want to write for Applied Web Tools? Send your Writer's Query to
Editor@AppliedWebTools.net for details.
HTML
Reference
&
Tutorial
CSS
Reference
&
Tutorial
DOM
Reference
&
Tutorial
JavaScript
Reference
&
Tutorial
50+ Programming Examples
Use HTML, CSS, DOM & JavaScript Together
Misc. Essays & Documents
You'll Find Just About Anything In Here
50+ Web Page Constructions
Learn the Art of Using HTML, CSS, DOM & JavaScript Together
 Changing Background Colors
 Event Triggering With onLoad
 Disabling The Right Click
 DOM Driven Color Changing
 Switching Images
 innerHTML Attribute Access
 Change With innerHTML
 Changing Positions
 Change Position With onMouseMove
 Change Text Position
 Interactivity Skills
 Type-writing A Message
 Auto-changing Text Size
 Making Text Scroll
 Blinking Text
 Simple Form Authentication
 Change Background Color Of An INPUT
 Change Text Color Of An INPUT
 Change Background Image Of An INPUT
 Select All Checkboxes
 Select Color Of The Submit Button
 Change Text Color Of A Submit Button
 Insert Background Image To A Button
 Change Color Of Drop Down List
 Change Text Color Of A Drop Down List
 Change Color Of A TEXTAREA
 Change The Text Color Of A TEXTAREA
 Insert An Image Into A TEXTAREA
 Change The Size Of An Image
 Change The Source Of An Image
 Change The Position Of An Image
 Change The Background Image
 Moving Images Around The Page
 Drag & Drop An Image
 A Simple Image Viewer
 A Shaking Image
 A Digital Clock
 Drop Down List Link
 Top Drop Down Menu
 Always On Top Menu
 Inset Border Buttons
 A Description Generating Menu
 An Image Generating Menu
 A Horizontal Sliding Menu
 A Click Horizontal Sliding Menu
 Returning Cursor Co-ordinates
 Making Text Follow The Cursor
 Attaching An Image To The Cursor
description image

This series of instructions shows a small pop up description according to whatever you’re interested in showing. You place the descriptive text within the functions as they’re placed in the document. The functions are triggered with an onMouseOver event handler and reset by calling a reset() method with an onMouseOut event handler.

Assign any CSS rules you like, as long as they’re applicable to a textual link. If you’d like to play around, you can include many different formatting styles and any valid CSS rule that is reflected within the DOM specifications. There are many, some 400 of them.

<html>
<head>

<style>
table {
background:black;
}

a {
text-decoration:none;
color:#000000;
}


td {
font:bold;
background:#ADD8E6;
}
</style>

<script type="text/javascript">
function get(image) {
document.getElementById('tip').innerHTML="<img src='" + image + "' />";
}

function reset() {
document.getElementById('tip').innerHTML=" ";
}
</script>

</head>

<body>

<table width="100%">
<tr>
<td><a href="page.html" onmouseover="get('image.gif')" onmouseout="reset()">Item One</a></td>
</tr><tr>
<td><a href="page.html" onmouseover="get('image.gif')" onmouseout="reset()">Item Two</a></td>
</tr><tr>
<td><a href="page.html" onmouseover="get('image.gif')" onmouseout="reset()">Item Three</a></td>
</tr>
</table>

</body>
</html>


I’ve placed the links inside a table and have provided a reset() method to clear the descriptive text from being displayed. You might not want to do this, though – just leave the descriptions up if you need to, without calling a reset() method.
I do not employ cookies or tracking devices of any kind