I have written this script:
And HTML:Code:$.fn.inters = function (target) { this.find('li').hover(function () { var head = $(this).find('a').attr('title'); var image = $(this).attr('title'); var href = $(this).find('a').attr('href'); $(target).find('img').attr('src', image); $(target).find('img').attr('alt', head); $(target).attr('href', href); $(target).attr('title', head); $(target).find('span').html(head); }).eq(0).hover(); function headline(){ $("#topt").inters('.headline'); } setInterval(headline,3000);
the hover effect doesnt repeat with sertInterval. Why sertInterval doesnt work here?Code:<div class="mhead"> <div class="mTop"> <a class="headline" title="" href=""> <img alt="" src=""> <span> </span> </a> </div> <div class="tNav"> <ul id="topt" class="tUl"> <li title="http://www.site.com/761028497.jpg"> <a title="" href="">1</a> </li> <li title="http://www.site.com/761028497.jpg"> <a title="" href="">2</a> </li> </ul> </div>


Reply With Quote






Bookmarks