Jump to content

how to retain selected tab even when page reloads


geekisthenewsexy

Recommended Posts

Hi there. As the subject goes, when I click on a certain tab, I'd be happy if it would just "stay put" even when I click the refresh/reload button. The fetched contents are fine, it doesn't go back to the default content of the default tab when the page reloads. Only the tabs go back.. :( I'm using jquery here for the tabs as well as ajax to fetch contents into a div when a tab is selected. I'm a freshman to jquery and ajax so I'm clueless as of now.  :P Please take a look at the code I'm working..

 

		<script type="text/javascript">
	$(document).ready(function() {

	//Default Action
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("current").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content

	//On Click Event
	$("ul.tabs li").click(function() {
	$("ul.tabs li").removeClass("current"); //Remove any "active" class
	$(this).addClass("current"); //Add "active" class to selected tab
	$(".tab_content").hide(); //Hide all tab content
	var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
	$(activeTab).fadeIn(); //Fade in the active content	
	return false;
	});
	});
	</script>

 

Please, do you have suggestions or ideas what or where I can put a code to make it work?? I'd be so glad if you guys can help me.  :-\

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.