Skip to content Skip to sidebar Skip to footer

JQuery Tooltip Is Not Working

I want a tooltip to show when I rollover on particular links. It's not working. The commented out alert is working, so event is not the issue. This is my javascript code: $(window)

Solution 1:

Remove the mouseover function. The plugin doesn't require you to add a custom mouseover function. It's done from the plugin for you.

if(this.text==" View image") {
            $(this).tooltip();
    }

Hope this helps ^^

Change the main jQuery function to $(document).ready(function(){});

This will probably work now~


Solution 2:

Try this:

$("a").each(function() {
    if(this.innerHTML == " View image") {
        $(this).tooltip();
    }
}

Also, there's a space before the View in "View image". I'm not sure if that's intentional or not.


Solution 3:

I used jQuery tipsy on my recent projects. Quite easy to understand and integrate.


Post a Comment for "JQuery Tooltip Is Not Working"