Hi,

I have an issue which relates to reloading the current tab.

While using the api keys tabApi.click(currentTab) does not seem to work....

i am now reloading using tabsApi.next(); tabsApi.prev();

So the tab goes forward and comes back to the current tab.

is there anyother way to do it....

the tabs api keys are on this page....
http://flowplayer.org/tools/tabs/index.html


	 try{
		   var tabsArray  = new Array("video","youtube","download");
		   var tabs = $(".tabs");
		   for(var tc=0;tc<tabs.length;tc++){

			   url = "showVideo.php?curPage="+tabsArray[tc]+"&courseId="+course+"&v="+v;
			   $(tabs[tc]).attr("href",url);
		   }
		   alert($(tabs[0]).attr("href"));
		   hrefid = $(ref).attr("id");
		   $(".selected").removeClass("selected");
		   $("#"+$(ref).attr("id")).addClass("selected");
		   var tabsApiClick = $("ul.css-tabs").data("tabs");
		   var curTab = document.getElementById("curTab").value.parseInt;
		   tabsApiClick.next();
		   tabsApiClick.prev();
	 }catch(e){e.message}


if i need to be more clear please tell me .... i ll get you details.....

Any help appreciated...

Thanks in advance......