How to hide certain divs by clicking a button?
P粉193307465
2023-09-04 15:51:01
<p>I'm looking for a way to hide a certain number of divs by using the button onclick event. </p>
<p>I know it might have something to do with <code>.toggleClass('.AddCSSClassHere')</code> but I'm not really sure... I can hide/show a div but not the one in the parent div specific div. jquery comes from a code snippet I wanted to use earlier.
All divs with hidethis class "" need to be shown or hidden when clicking the "Show Columns" button</p>
<p>
<pre class="brush:js;toolbar:false;">$('button').click(function() {
$(this).siblings('div').toggleClass('hidethis ');
});</pre>
<pre class="brush:css;toolbar:false;">* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
}
body {
background: #fff;
padding: 0;
margin: 0;
font-family: Myriad-Pro, Arial, 'Varela Round', sans-serif;
font-size: 16px;
}
.quotation {
height: 100%;
overflow: auto;
}
.main-div {
position: sticky;
top: 0;
}
.header-div {
display: flex;
padding: 5px 0;
background-color: #fff;
}
.titles {
display: flex;
width: 100%;
align-items: center;
}
.currencyinfo {
width: fit-content;
max-width: 100px;
min-width: 100px;
text-align: center;
padding: 0;
}
.info {
width: fit-content;
max-width: 100px;
min-width: 100px;
text-align: center;
padding: 10px 0;
}
.currency {
max-width: 70px;
min-width: 70px;
}
.table-info {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
overflow-y: scroll;
}
.main-div-info {
display: flex;
text-align: center;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
}
.div-info {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
padding: 10px 0;
align-items: center;
}
.hidethis {
display: none;
}</pre>
<pre class="brush:html;toolbar:false;"><script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js" integrity ="sha512-3gJwYpMe3QewGELv8k/BX9vcqhryRdzRMxVfq6ngyWXwo03GFEzjsUm8Q7RZcHPHksttq7/GFoxjCVUjkjvPdw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<section class="quotation">
<div class="main-div">
<div class="header-div">
<div class="titles">
<div class="currencyinfo product-title">
<button class="show-this-data">show columns</button>
</div>
<div class="currencyinfo"></div>
<div class="currencyinfo"></div>
<div class="currencyinfo"></div>
<div class="currencyinfo hidethis" style="border-left: 1px solid #bdbdbd;">Local</div>
<div class="currencyinfo hidethis"></div>
<div class="currencyinfo hidethis"></div>
<div class="currencyinfo hidethis"></div>
</div>
</div>
</div>
<div class="main-div">
<div class="header-div">
<div class="titles">
<div class="info product-title">Product name</div>
<div class="info">ID</div>
<div class="info">Quantity</div>
<div class="info">Periods</div>
<div class="info hidethis"> </div>
<div class="info hidethis">Unit Price</div>
<div class="info hidethis">Unit Cost</div>
<div class="info hidethis">Unit Discount</div>
</div>
</div>
</div>
<div class="main-div">
<div class="header-div">
<div class="titles">
<div class="info product-title"><i class="fa fa-chevron-down rotate" aria-hidden="true"></i><a href="#">Full Throttle</a></div>
<div class="info"> </div>
<div class="info">1.0</div>
<div class="info">1.0</div>
<div class="info hidethis">USD</div>
<div class="info hidethis">37.50</div>
<div class="info hidethis">0.0</div>
<div class="info hidethis">0.0</div>
</div>
</div>
</div>
</section></pre>
</p>
You need to go one level up to find the target element as a sibling. Indenting the content of block-level elements helps with better visualization.
If you want to toggle all such elements in all containers, you need to introduce a new class to track them when they are removed, or select them all and use the element list. p>