how can i set jquery tabs from my codebehind in page load of child page.
I tried setting tabs in initialization & then i am calling function from code behind to select the tab. but its not working at the first time. it works after postback.
$(function() {
$('#tabsSelection').tabs();
})
function SelectTab() {
$('#tabsSelection').tabs();
$('#tabsSelection').tabs('select', 3);
}
Code behind function to register script on page load
if (!IsPostBack)
{
ScriptManager.RegisterClientScriptBlock(Page, typeof(System.Web.UI.Page), "dsbl", "DisableTab();", true);
}