Results 1 to 3 of 3

Thread: Help with tooltip script not hiding...

  1. #1
    Join Date
    Aug 2007
    Location
    usa
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Help with tooltip script not hiding...

    Hi,

    I am trying to use the Script at: http://www.walterzorn.com/tooltip/tooltip_e.htm

    I am trying to use the TagToTip thing to turn a div into a tooltip, and its supposed to automatically hide the div being used as a tip-- but it isn't.

    Can anyone see why?

    Test page:
    http://www.d.umn.edu/~kirbypb/sept.html
    (click Frederick Winters)

    I can't post the script cause its too long...

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    The script is meant to initialize using an onmouseover event. So, you can either switch to that, or use a display:none; link to provide it while still activating the 'real' tip onclick:

    Code:
    <a href="#" style="display:none;" onmouseover="TagToTip('tag1');"></a>
    <a href="#" onclick="TagToTip('tag1');return false;"><b>Frederick Winters (Hypnotist)</b></a>
    <br />7:00pm, Ballroom
    <div id="tag1"> YO HELP ME </div>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Aug 2007
    Location
    usa
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you so much-- I hadn't realised that would break it. :P

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •