Skip to content Skip to sidebar Skip to footer

Flexslider - Show Tooltip While Mouse Hover On Dots

I am using http://flexslider.woothemes.com/ flex slider plugin in my page. Below is my code for flexslider: html:

    Solution 1:

    As suggested by RRR, I have added title to each of the dots.

    $(".flexslider ol li a").each(function(index){
       $(this).attr("title","slide number "+(index+1));
    });
    

    Please refer this fiddle

    Post a Comment for "Flexslider - Show Tooltip While Mouse Hover On Dots"