javascript - Button not showing selected on tab load from jquery

When I load the page normally, it will display corrected. However when attempting to load the tab through the url IE: page.php#tab2, the tab navigation will not select the tab I am currently on and will instead load the default tab "tab1"
jquery:
$(document).ready(function() {
//When page loads...
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
var tabId = location.hash; // will look something like "#h-02"
if(tabId){
$(".tab_content").hide(); //Hide all content
$(tabId).addClass("active").show(); //Activate first tab
$(tabId).show(); // this will fired only when url get hash
}
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active ID content
return false;
});
html:
<div id="tab2" class="tab_content">
<article class="module width_quarter">
<header><h3>GeoLocation</h3></header>
<div class="module_content">
Content added here...
</article><!-- end of styles article -->
<div class="clear"></div>
</div></div><!-- end of #tab2 -->
What it's doing... https://i.stack.imgur.com/40Tc5.png
What I want it to do... https://i.stack.imgur.com/O8Fit.png
Navigation:
<section id="main" class="column">
<article class="module width_full">
<header><h3 class="tabs_involved">Lead ID: 993923</h3>
<ul class="tabs">
<li><a href="#tab1">Profile</a></li>
<li><a href="#tab2">Roof Information</a></li>
<li><a href="#tab3">Financials</a></li>
<li><a href="#tab4">Work Orders</a></li>
<li><a href="#tab5">Contracts</a></li>
<li><a href="#tab6">Documents</a></li>
<li><a href="#tab7">Gallery</a></li>
</ul>
</header>
Answer
Solution:
Since you are doing the same thing twice, it's good practice to consolidate into a single function. Doing it that way can also help find errors since you have to look in one place instead of 2 or more
$(document).ready(function() {
$(".tab_content").hide();
let tabId = location.hash ? location.hash.replace('#', '') : 'tab1';
showTabContent(tabId)
//On Click Event
$("ul.tabs li").click(function() {
let tabId = $(this).find("a").attr("href").replace('#', '');
showTabContent(tabId);
return false
});
});
function showTabContent(tabId) {
$("ul.tabs li").removeClass("active");
$(`a[href='#${tabId}']`).closest('li').addClass("active");
$(".tab_content").hide(); //Hide all tab content
$(`#${tabId}`).fadeIn(); //Fade in the active ID content
}
.tabs li.active a {
background: #000;
color: #fff;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<section id="main" class="column">
<article class="module width_full">
<header>
<h3 class="tabs_involved">Lead ID: 993923</h3>
<ul class="tabs">
<li><a href="#tab1">Profile</a></li>
<li><a href="#tab2">Roof Information</a></li>
<li><a href="#tab3">Financials</a></li>
<li><a href="#tab4">Work Orders</a></li>
<li><a href="#tab5">Contracts</a></li>
<li><a href="#tab6">Documents</a></li>
<li><a href="#tab7">Gallery</a></li>
</ul>
</header>
<div id="tab1" class="tab_content">
<article class="module width_quarter">
<header>
<h3>Tab 1</h3>
</header>
<div class="module_content">
Content added here...
</article>
<!-- end of styles article -->
<div class="clear"></div>
</div>
<div id="tab2" class="tab_content">
<article class="module width_quarter">
<header>
<h3>GeoLocation</h3>
</header>
<div class="module_content">
Content added here...
</article>
<!-- end of styles article -->
<div class="clear"></div>
</div>
<!-- end of #tab2 -->
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: your system folder path does not appear to be set correctly. please open the following file and correct this: index.php
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
About the technologies asked in this question
PHP
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
JavaScript
JavaScript is a multi-paradigm language that supports event-driven, functional, and mandatory (including object-oriented and prototype-based) programming types. Originally JavaScript was only used on the client side. JavaScript is now still used as a server-side programming language. To summarize, we can say that JavaScript is the language of the Internet.
https://www.javascript.com/
JQuery
JQuery is arguably the most popular JavaScript library with so many features for modern development. JQuery is a fast and concise JavaScript library created by John Resig in 2006. It is a cross-platform JavaScript library designed to simplify client-side HTML scripting. Over 19 million websites are currently using jQuery! Companies like WordPress, Facebook, Google, IBM and many more rely on jQuery to provide a kind of web browsing experience.
https://jquery.com/
CSS
CSS (Cascading Style Sheets) is a formal language for describing the appearance of a document written using a markup language.
It is mainly used as a means of describing, decorating the appearance of web pages written using HTML and XHTML markup languages, but can also be applied to any XML documents, such as SVG or XUL.
https://www.w3.org/TR/CSS/#css
HTML
HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet.
Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone.
https://www.w3.org/html/
Welcome to programmierfrage.com
programmierfrage.com is a question and answer site for professional web developers, programming enthusiasts and website builders. Site created and operated by the community. Together with you, we create a free library of detailed answers to any question on programming, web development, website creation and website administration.
Get answers to specific questions
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Help Others Solve Their Issues
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.