Login   Register  
PHP Classes
elePHPant
Icontem

File: initTooltip.js

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2006-11-09 12:54
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();
}