Button for an action , Jquery
I have the following script in action:
http://jsfiddle.net/UyeLX/3/
is there any option to make a external navigation for the sliders?
i want a navigation bar on that slides to the c开发者_如何转开发orrect content tab.
Can anybody please help me !!!!
If your button has an ID or class, simply use something like
$(".selector").click(function(){ $("#tab").trigger("click"); });
That will trigger the click event on the element with the ID of "tab".
Does that answer your question?
精彩评论