I'm struggling to find the solution of this for hours, but nothing seems to work no matter what I do (as much as my knowledge of javascript/jquery allows me to). So I have this jquery script that switches tabs in a search form and the code is as below:
<ul id="tabs">
<li><a href="#" name="tab1">T1/a></li>
<li><a href="#" name="tab2">T2</a></li>
</ul>
<div id="content">
<div id="tab1">
TAB 1 CONTENT
</div>
<div id="tab2">
TAB 2 CONTENT
</div>
</div>
AND THE JQUERY CODE:
$(document).ready(function() {
$("#content div").hide(); // Initially hide all content
$("#tabs li:first").attr("id","current"); // Activate first tab
$("#content div:first").fadeIn(); // Show first tab content
$('#tabs a').click(function(e) {
e.preventDefault();
if ($(this).closest("li").attr("id") == "current"){ //detection for current tab
return
}
else{
$("#content div").hide(); //Hide all content
$("#tabs li").attr("id",""); //Reset id's
$(this).parent().attr("id","current"); // Activate this
$('#' + $(this).attr('name')).fadeIn(); // Show content for current tab
}
});
});
I tried adding a class="current" aside with the tab div name but nothing works either. I'm thinking maybe there is this click function that accepts current-tab changes only on click, but I want to make this automatic so when the second tab is active it remains active based on a 'current' class that I give. My situation is like this: The first tab searches from English TO Italian, and the second tab searches from Italian TO English, but when I select the second option (It to En) and the page refreshes to display results the first tab is selected, so if the user wants to search 2 or more times (from Italian to english) he'd have to select second tab over and over.
If I can make it so that jquery detects the 'current' class, I can add some php to check the url parameters and properly activate the right tab. example:
if search.php?lang=it_to_eng, I add 'current'class to the second tab and vice versa.
Thank you in advance.