Created
August 18, 2018 17:15
-
-
Save scottdorman/dbe9cb3494e21dd880cf155a89b24622 to your computer and use it in GitHub Desktop.
Saving Bootstrap component state
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function restoreAccordionPanel(storageKey, accordionId) { | |
var activeItem = localStorage.getItem(storageKey); | |
if (activeItem) { | |
//remove default collapse settings | |
$(accordionId + " .panel-collapse").removeClass('in'); | |
//show the account_last visible group | |
$("#" + activeItem).addClass("in"); | |
} | |
} | |
function restoreActiveTab(storageKey, tabId) { | |
var activeItem = localStorage.getItem(storageKey); | |
if (activeItem) { | |
$(tabId + ' a[href="' + activeItem + '"]').tab('show'); | |
} | |
} | |
function saveActiveAccordionPanel(storageKey, e) { | |
localStorage.setItem(storageKey, e.target.id); | |
} | |
function saveActiveTab(storageKey, e) { | |
localStorage.setItem(storageKey, $(e.target).attr('href')); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page Title</title> | |
</head> | |
<body> | |
<div class="accordion" id="accordionExample"> | |
<div class="card"> | |
<div class="card-header" id="headingOne"> | |
<h5 class="mb-0"> | |
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne"> | |
Collapsible Group Item #1 | |
</button> | |
</h5> | |
</div> | |
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample"> | |
<div class="card-body"> | |
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. | |
</div> | |
</div> | |
</div> | |
<div class="card"> | |
<div class="card-header" id="headingTwo"> | |
<h5 class="mb-0"> | |
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo"> | |
Collapsible Group Item #2 | |
</button> | |
</h5> | |
</div> | |
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample"> | |
<div class="card-body"> | |
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. | |
</div> | |
</div> | |
</div> | |
<div class="card"> | |
<div class="card-header" id="headingThree"> | |
<h5 class="mb-0"> | |
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree"> | |
Collapsible Group Item #3 | |
</button> | |
</h5> | |
</div> | |
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample"> | |
<div class="card-body"> | |
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. | |
</div> | |
</div> | |
</div> | |
</div> | |
<script> | |
$(function () { | |
$('#accordion').on('shown.bs.collapse', function (e) { | |
saveActiveAccordionPanel('accordion-activePanel', e); | |
}) | |
)}; | |
restoreAccordionPanel('accordion-activePanel', '#accordion'); | |
</script> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment