Results 1 to 3 of 3

Thread: fixed tool tip without href

  1. #1
    Join Date
    Jan 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Red face fixed tool tip without href

    Hi I'm a newbie to everything. I am trying to create a fixed tool tip as in the link off of this site. I don't want it to reference anything, just to pop up the tool tip when I mouse over the word. Can anyone help?

    http://www.dynamicdrive.com/dynamici...xedtooltip.htm

  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

    Instead of something like this:

    HTML Code:
    <a href="http://www.javascriptkit.com"  onMouseover="fixedtooltip('Comprehensive JavaScript tutorials and over 400+ <b>free</b> scripts.', this, event, '150px')" onMouseout="delayhidetip()">JavaScript Kit</a>
    Try something like this:

    HTML Code:
    <span onmouseover="fixedtooltip('Comprehensive JavaScript tutorials and over 400+ <b>free</b> scripts.', this, event, '150px')" onMouseout="delayhidetip()">JavaScript Kit</span>
    - John
    ________________________

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

  3. #3
    Join Date
    Jan 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I worked thank you very much!
    Last edited by ddadmin; 01-05-2006 at 11:05 PM.

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
  •