HTML JavaScript DHTML



In-Place Help

.help { position: absolute;
        left: 300px;
        top: 20px;
        visibility: hidden;
        width: 100px;
        padding: 10px; 
        border: 1px solid #f00;
}
form a:hover {cursor : help


var item = null;
function showHelp(newItem) {
   if (item) {
       item.style.visibility='hidden';
   }
   item = document.getElementById(newItem);
   item.style.visibility='visible';
}



    

        click me to read help

        click me to read help
    
    help for the first item.

    help for the second item.