jquery - Making a tab sleeted on an event -
i making tabs using $("#tabs").tabs();
but have button on page on clicking button 3rd tab should made selected. how can that?
use active options of tab ...doc here try this
$('#buttonid').click(function(){ $("#tabs").tabs({ active: 2 }); //2 because zero-based index of panel });
Comments
Post a Comment