Jump to content

Append Div to the Mouse Cursor?


Glese

Recommended Posts

    <body>

        
        
        <div id='navigation'>
            <ul>
                <li><a href="">Front Page</a></li>
                <li><a href="">Second Page</a></li>
                <li><a href="">Third Page</a></li>
            </ul>
        </div>
        
        <div id="tooltip">This is some text.</div>
        

        
        
        <script>

                $('div#navigation a').hover(
                
                function() {
                    $('div#tooltip').fadeIn(500)
                },
                
                function() {
                    $('div#tooltip').fadeOut(100)
                }); 

        </script>
        
        
    </body>

 

I am trying to create a tool tip for the navigation bar, above is the script so far. Any ideas how to append the div to the mouse cursor, which function is needed to achieve this?

 

The div does appear when hovering the mouse over the navigation bar, though the puzzle piece is, to have the division fade in beneath the mouse cursor.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.