Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

How easy to create a slide tabbed box using jQuery?

8 like 0 dislike
hello guys,

I'm newer jQuery. I will make a slide tabbed box with jQuery and using my website....

How easy to create a slide tabbed box using jQuery?
asked 1 year ago by daneim (127,080 points)

1 Answer

1 like 0 dislike
 
Best answer
First of all i am search google. and collect this JavaScript code.
i think it is a nice solution for those who were looking to enable pause on hover for the current slide. Use this piece of JavaScript code instead of above.

$(document).ready(function(){  
$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);  
$("#featured").hover(  
function() {  
$("#featured").tabs("rotate",0,true);  
},  
function() {  
$("#featured").tabs("rotate",5000,true);  
  }  
 );  
 });
answered 1 year ago by marck_don (191,010 points)

Related questions

6 like 0 dislike
0 answers
4 like 0 dislike
1 answer
asked 1 year ago by Edward (33,730 points)
9 like 0 dislike
1 answer
0 like 0 dislike
0 answers
asked 1 year ago by sr_webmaster (21,000 points)
3 like 0 dislike
0 answers
asked 1 year ago by marck_don (191,010 points)