home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / Chip_2002-02_cd1.bin / zkuste / fineread / www / grafika / reader_soubory / tooltip.js < prev    next >
Text File  |  2002-01-15  |  1KB  |  43 lines

  1. /*
  2. based on 'Text Link/Image Map Tooltip Script' - 
  3. ⌐ Dynamic Drive (www.dynamicdrive.com)
  4. For full source code, installation instructions,
  5. 100's more DHTML scripts, and Terms Of
  6. Use, visit dynamicdrive.com:
  7. http://www.dynamicdrive.com/dynamicindex5/texttool.htm
  8. */
  9.  
  10. if (!document.layers&&!document.all) {
  11.     var event = "not supported";
  12. }
  13.  
  14. function showtip(current,e,text) {
  15.     if (document.all){
  16.         thetitle=text.split("<br>");
  17.  
  18.         if (thetitle.length > 1) {
  19.             var temp_title = "";
  20.             for (var i=0; i < thetitle.length; i++) {
  21.                 if (temp_title != "") {
  22.                     temp_title += "\n\r";
  23.                 }
  24.                 temp_title += thetitle[i];
  25.             }
  26.             current.title = temp_title;
  27.         } else {
  28.             current.title=text;
  29.         }
  30.     } else if (document.layers) {
  31.         document.tooltip.document.write('<layer bgColor="white" style="border:1px solid black;font-size:12px;">'+text+'</layer>')
  32.         document.tooltip.document.close()
  33.         document.tooltip.left=e.pageX+5
  34.         document.tooltip.top=e.pageY+5
  35.         document.tooltip.visibility="show"
  36.     }
  37. }
  38.  
  39. function hidetip(){
  40.     if (document.layers)
  41.         document.tooltip.visibility="hidden"
  42. }
  43.