I\'m using http://jqueryui.com/demos/tabs/#manipulation. I want to get an title of current selected tab which I earlier named (e.g. from a href). How to get it?
I tr
Thanks I was struggling with this code.
Now I've used thiscode in my program. Working like this.
$('#tabs').click('tabsselect', function (event, ui) { var selectedTab = $("#tabs").tabs('option','selected'); alert("selectedTab===>" + $($("#tabs li")[selectedTab]).text()); });