Collapse boot downloads on page load

the title pretty much covers the problem I am facing.

I have a list on the website that I am developing, and I have hidden things in folding elements.

The problem is that they are already reset when the page loads.

Does anyone know how to fix this?

Thank.

+8
source share
3 answers

Thanks for your comment Rob.

Built it after viewing HTML, I need to use collapse, but all but one used collapse in.

Sort tasks :)

Download is reset when the page loads:

<div id="collapseOne" class="panel-collapse collapse in">

Download hidden until click:

<div id="collapseOne" class="panel-collapse collapse">
+11
source

Bootstrap :

collapse :

.collapse

.collapse.in

.collapsing

HTML ( collapse.in )

+9

Starting from bootstrap 4.2.1, if we want to show minimized content on boot:

use collapse show class for div or any element you want to show.

check Bootstrap documents Collapse

0
source

Source: https://habr.com/ru/post/1543075/


All Articles