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
https://forums.phpfreaks.com/topic/252392-append-div-to-the-mouse-cursor/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.