W3.CSS Tab Navigation Issue

In the code below I have two sections of a table that have three tabs each. They are based of the Tabs example on W3 Schools page, hence why it still refers to “city” instead of something like “sport”. The issue that I am having is that when I activate one tab in one section, it completely deactivates the tab in the other table section SITE LINK WITH PROBLEM. code posted below.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code><link href="https://www.w3schools.com/w3css/4/w3.css" rel="stylesheet" />
<div class="w3-container">
<h2>Trojan Athletic Fund</h2>
<table border="1" cellpadding="1" cellspacing="1" style="height:100%;width:100%;">
<tbody>
<tr>
<td style="vertical-align: middle; width: 50%;">
<div class="sidearm-story-image-align-center" style="text-align:center; margin:0px; padding:0px"><img alt="Baseball TAF Photo" height="333" src="/images/2024/7/19/AU_Baseball_0251-2-1024x683__1_.jpeg" style="display: inline-block;" width="500" /></div>
</td>
<td>
<div class="sidearm-story-image-align-center" style="text-align:center"><img alt="WBB TAF Photo" height="333" src="/images/2024/7/19/AU_WBB_379-1024x617__1_.jpeg" style="display: inline-block;" width="500" /></div>
</td>
</tr>
<tr>
<td style="width: 50%; vertical-align: top;">
<div class="parent_target">
<div class="w3-row">
<div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'Baseball1');">Baseball One</a></div>
<div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'Baseball2');">Baseball Two</a></div>
<div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'Baseball3');">Baseball Three</a></div>
</div>
<div class="w3-container city" id="Baseball1">
<h2>Team Website</h2>
<p>Stay up to date with how your Trojans are doing this season! <a href="www.autrojans.com/sports/baseball">Trojans Baseball</a></p>
</div>
<div class="w3-container city" id="Baseball2" style="display:none">
<h2>Coaches Letter</h2>
<p><strong>Dear Trojan Army,</strong> Greetings from Anderson University Baseball! On behalf of our Trojans, I would like to thank you for supporting our mission of providing an exceptional academic and athletic experience for our student-athletes. As the Baseball coach, your generosity ensures that each student-athlete can have fun, explore their faith, form relationships, and build accountability within their teams. Additionally, Anderson University Athletics continually leads the South Atlantic Conference in academic standing and consistently breaks school records in competition and in the classroom each year! Over the last few years, gifts to the Trojan Athletic Fund and Baseball have supported us as we have continued to improve and make waves in the SAC. We ousted third-seed Catawba from the first round of the SAC tournament in 2023 and are looking forward to an exciting 2024 season! Anderson University Baseball thanks you and we look forward to seeing you at our games soon! <strong>Go Trojans!</strong> Coach PJ Zocchi Anderson University Baseball</p>
</div>
<div class="w3-container city" id="Baseball3" style="display:none">
<h2>Projects</h2>
<p>Equipment</p>
<ul>
<li>Bats</li>
<li>Baseballs</li>
<li>Gloves</li>
</ul>
<p>Technology</p>
<ul>
<li>Trackman Baseball</li>
<li>Rapsodo Baseball</li>
<li>New Scoreboard</li>
</ul>
</div>
</div>
</td>
<td style="width: 50%; vertical-align: top;">
<div class="parent_target">
<div class="w3-row">
<div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'WBB1');">WBB One</a></div>
<div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'WBB2');">WBB Two</a></div>
<div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'WBB3');">WBB Three</a></div>
</div>
<div class="w3-container city" id="WBB1">
<h2>Team Website</h2>
<p>Stay up to date with how your Trojans are doing this season! <a href="www.autrojans.com/sports/baseball">Trojans Baseball</a></p>
</div>
<div class="w3-container city" id="WBB2" style="display:none">
<h2>Coaches Letter</h2>
<p><strong>Dear Trojan Army,</strong> Greetings from Anderson University Baseball! On behalf of our Trojans, I would like to thank you for supporting our mission of providing an exceptional academic and athletic experience for our student-athletes. As the Baseball coach, your generosity ensures that each student-athlete can have fun, explore their faith, form relationships, and build accountability within their teams. Additionally, Anderson University Athletics continually leads the South Atlantic Conference in academic standing and consistently breaks school records in competition and in the classroom each year! Over the last few years, gifts to the Trojan Athletic Fund and Baseball have supported us as we have continued to improve and make waves in the SAC. We ousted third-seed Catawba from the first round of the SAC tournament in 2023 and are looking forward to an exciting 2024 season! Anderson University Baseball thanks you and we look forward to seeing you at our games soon! <strong>Go Trojans!</strong> Coach PJ Zocchi Anderson University Baseball</p>
</div>
<div class="w3-container city" id="WBB3" style="display:none">
<h2>Projects</h2>
<p>Equipment</p>
<ul>
<li>Bats</li>
<li>Baseballs</li>
<li>Gloves</li>
</ul>
<p>Technology</p>
<ul>
<li>Trackman Baseball</li>
<li>Rapsodo Baseball</li>
<li>New Scoreboard</li>
</ul>
</div>
</div>
</td>
</tr>
</tbody>
</table>
<br />
<script> function openCity(elem, cityName) { var i, x, tablinks; x = document.getElementsByClassName("city"); for (i = 0; i < x.length; i++) { x[i].style.display = "none"; } document.getElementById(cityName).style.display = "block"; evt.currentTarget.firstElementChild.className += " w3-border-red"; } </script></div>
</code>
<code><link href="https://www.w3schools.com/w3css/4/w3.css" rel="stylesheet" /> <div class="w3-container"> <h2>Trojan Athletic Fund</h2> <table border="1" cellpadding="1" cellspacing="1" style="height:100%;width:100%;"> <tbody> <tr> <td style="vertical-align: middle; width: 50%;"> <div class="sidearm-story-image-align-center" style="text-align:center; margin:0px; padding:0px"><img alt="Baseball TAF Photo" height="333" src="/images/2024/7/19/AU_Baseball_0251-2-1024x683__1_.jpeg" style="display: inline-block;" width="500" /></div> </td> <td> <div class="sidearm-story-image-align-center" style="text-align:center"><img alt="WBB TAF Photo" height="333" src="/images/2024/7/19/AU_WBB_379-1024x617__1_.jpeg" style="display: inline-block;" width="500" /></div> </td> </tr> <tr> <td style="width: 50%; vertical-align: top;"> <div class="parent_target"> <div class="w3-row"> <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'Baseball1');">Baseball One</a></div> <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'Baseball2');">Baseball Two</a></div> <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'Baseball3');">Baseball Three</a></div> </div> <div class="w3-container city" id="Baseball1"> <h2>Team Website</h2> <p>Stay up to date with how your Trojans are doing this season! <a href="www.autrojans.com/sports/baseball">Trojans Baseball</a></p> </div> <div class="w3-container city" id="Baseball2" style="display:none"> <h2>Coaches Letter</h2> <p><strong>Dear Trojan Army,</strong> Greetings from Anderson University Baseball! On behalf of our Trojans, I would like to thank you for supporting our mission of providing an exceptional academic and athletic experience for our student-athletes. As the Baseball coach, your generosity ensures that each student-athlete can have fun, explore their faith, form relationships, and build accountability within their teams. Additionally, Anderson University Athletics continually leads the South Atlantic Conference in academic standing and consistently breaks school records in competition and in the classroom each year! Over the last few years, gifts to the Trojan Athletic Fund and Baseball have supported us as we have continued to improve and make waves in the SAC. We ousted third-seed Catawba from the first round of the SAC tournament in 2023 and are looking forward to an exciting 2024 season! Anderson University Baseball thanks you and we look forward to seeing you at our games soon! <strong>Go Trojans!</strong> Coach PJ Zocchi Anderson University Baseball</p> </div> <div class="w3-container city" id="Baseball3" style="display:none"> <h2>Projects</h2> <p>Equipment</p> <ul> <li>Bats</li> <li>Baseballs</li> <li>Gloves</li> </ul> <p>Technology</p> <ul> <li>Trackman Baseball</li> <li>Rapsodo Baseball</li> <li>New Scoreboard</li> </ul> </div> </div> </td> <td style="width: 50%; vertical-align: top;"> <div class="parent_target"> <div class="w3-row"> <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'WBB1');">WBB One</a></div> <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'WBB2');">WBB Two</a></div> <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'WBB3');">WBB Three</a></div> </div> <div class="w3-container city" id="WBB1"> <h2>Team Website</h2> <p>Stay up to date with how your Trojans are doing this season! <a href="www.autrojans.com/sports/baseball">Trojans Baseball</a></p> </div> <div class="w3-container city" id="WBB2" style="display:none"> <h2>Coaches Letter</h2> <p><strong>Dear Trojan Army,</strong> Greetings from Anderson University Baseball! On behalf of our Trojans, I would like to thank you for supporting our mission of providing an exceptional academic and athletic experience for our student-athletes. As the Baseball coach, your generosity ensures that each student-athlete can have fun, explore their faith, form relationships, and build accountability within their teams. Additionally, Anderson University Athletics continually leads the South Atlantic Conference in academic standing and consistently breaks school records in competition and in the classroom each year! Over the last few years, gifts to the Trojan Athletic Fund and Baseball have supported us as we have continued to improve and make waves in the SAC. We ousted third-seed Catawba from the first round of the SAC tournament in 2023 and are looking forward to an exciting 2024 season! Anderson University Baseball thanks you and we look forward to seeing you at our games soon! <strong>Go Trojans!</strong> Coach PJ Zocchi Anderson University Baseball</p> </div> <div class="w3-container city" id="WBB3" style="display:none"> <h2>Projects</h2> <p>Equipment</p> <ul> <li>Bats</li> <li>Baseballs</li> <li>Gloves</li> </ul> <p>Technology</p> <ul> <li>Trackman Baseball</li> <li>Rapsodo Baseball</li> <li>New Scoreboard</li> </ul> </div> </div> </td> </tr> </tbody> </table> <br /> <script> function openCity(elem, cityName) { var i, x, tablinks; x = document.getElementsByClassName("city"); for (i = 0; i < x.length; i++) { x[i].style.display = "none"; } document.getElementById(cityName).style.display = "block"; evt.currentTarget.firstElementChild.className += " w3-border-red"; } </script></div> </code>
<link href="https://www.w3schools.com/w3css/4/w3.css" rel="stylesheet" />
<div class="w3-container">
<h2>Trojan Athletic Fund</h2>

<table border="1" cellpadding="1" cellspacing="1" style="height:100%;width:100%;">
    <tbody>
        <tr>
            <td style="vertical-align: middle; width: 50%;">
            <div class="sidearm-story-image-align-center" style="text-align:center; margin:0px; padding:0px"><img alt="Baseball TAF Photo" height="333" src="/images/2024/7/19/AU_Baseball_0251-2-1024x683__1_.jpeg" style="display: inline-block;" width="500" /></div>
            </td>
            <td>
            <div class="sidearm-story-image-align-center" style="text-align:center"><img alt="WBB TAF Photo" height="333" src="/images/2024/7/19/AU_WBB_379-1024x617__1_.jpeg" style="display: inline-block;" width="500" /></div>
            </td>
        </tr>
        <tr>
            <td style="width: 50%; vertical-align: top;">
            <div class="parent_target">
            <div class="w3-row">
            <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'Baseball1');">Baseball One</a></div>

            <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'Baseball2');">Baseball Two</a></div>

            <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'Baseball3');">Baseball Three</a></div>
            </div>

            <div class="w3-container city" id="Baseball1">
            <h2>Team Website</h2>

            <p>Stay up to date with how your Trojans are doing this season! <a href="www.autrojans.com/sports/baseball">Trojans Baseball</a></p>
            </div>

            <div class="w3-container city" id="Baseball2" style="display:none">
            <h2>Coaches Letter</h2>

            <p><strong>Dear Trojan Army,</strong> Greetings from Anderson University Baseball! On behalf of our Trojans, I would like to thank you for supporting our mission of providing an exceptional academic and athletic experience for our student-athletes. As the Baseball coach, your generosity ensures that each student-athlete can have fun, explore their faith, form relationships, and build accountability within their teams. Additionally, Anderson University Athletics continually leads the South Atlantic Conference in academic standing and consistently breaks school records in competition and in the classroom each year! Over the last few years, gifts to the Trojan Athletic Fund and Baseball have supported us as we have continued to improve and make waves in the SAC. We ousted third-seed Catawba from the first round of the SAC tournament in 2023 and are looking forward to an exciting 2024 season! Anderson University Baseball thanks you and we look forward to seeing you at our games soon! <strong>Go Trojans!</strong> Coach PJ Zocchi Anderson University Baseball</p>
            </div>

            <div class="w3-container city" id="Baseball3" style="display:none">
            <h2>Projects</h2>

            <p>Equipment</p>

            <ul>
                <li>Bats</li>
                <li>Baseballs</li>
                <li>Gloves</li>
            </ul>

            <p>Technology</p>

            <ul>
                <li>Trackman Baseball</li>
                <li>Rapsodo Baseball</li>
                <li>New Scoreboard</li>
            </ul>
            </div>
            </div>
            </td>
            <td style="width: 50%; vertical-align: top;">
            <div class="parent_target">
            <div class="w3-row">
            <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'WBB1');">WBB One</a></div>

            <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'WBB2');">WBB Two</a></div>

            <div class="w3-third w3-bottombar w3-hover-light-grey w3-padding"><a href="javascript:void(0)" onclick="openCity(this, 'WBB3');">WBB Three</a></div>
            </div>

            <div class="w3-container city" id="WBB1">
            <h2>Team Website</h2>

            <p>Stay up to date with how your Trojans are doing this season! <a href="www.autrojans.com/sports/baseball">Trojans Baseball</a></p>
            </div>

            <div class="w3-container city" id="WBB2" style="display:none">
            <h2>Coaches Letter</h2>

            <p><strong>Dear Trojan Army,</strong> Greetings from Anderson University Baseball! On behalf of our Trojans, I would like to thank you for supporting our mission of providing an exceptional academic and athletic experience for our student-athletes. As the Baseball coach, your generosity ensures that each student-athlete can have fun, explore their faith, form relationships, and build accountability within their teams. Additionally, Anderson University Athletics continually leads the South Atlantic Conference in academic standing and consistently breaks school records in competition and in the classroom each year! Over the last few years, gifts to the Trojan Athletic Fund and Baseball have supported us as we have continued to improve and make waves in the SAC. We ousted third-seed Catawba from the first round of the SAC tournament in 2023 and are looking forward to an exciting 2024 season! Anderson University Baseball thanks you and we look forward to seeing you at our games soon! <strong>Go Trojans!</strong> Coach PJ Zocchi Anderson University Baseball</p>
            </div>

            <div class="w3-container city" id="WBB3" style="display:none">
            <h2>Projects</h2>

            <p>Equipment</p>

            <ul>
                <li>Bats</li>
                <li>Baseballs</li>
                <li>Gloves</li>
            </ul>

            <p>Technology</p>

            <ul>
                <li>Trackman Baseball</li>
                <li>Rapsodo Baseball</li>
                <li>New Scoreboard</li>
            </ul>
            </div>
            </div>
            </td>
        </tr>
    </tbody>
</table>
<br />
<script> function openCity(elem, cityName) { var i, x, tablinks; x = document.getElementsByClassName("city"); for (i = 0; i < x.length; i++) { x[i].style.display = "none"; } document.getElementById(cityName).style.display = "block"; evt.currentTarget.firstElementChild.className += " w3-border-red"; } </script></div>

I’ve tried changing the city names, adding a parent-element feature and still am having the issue.

New contributor

Michael Sanders is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật