PHP Classes

File: initTooltip.js

Recommend this page to a friend!
  Classes of david boardman   GPX Mapper & CMS   initTooltip.js   Download  
File: initTooltip.js
Role: Auxiliary script
Content type: text/plain
Description: initTooltip js
Class: GPX Mapper & CMS
Save maps GPX location files from coordinates
Author: By
Last change:
Date: 17 years ago
Size: 228 bytes
 

Contents

Class file image Download
function doTooltip(e, msg) {
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.show(e, msg);
}
function hideTip() {
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.hide();
}