Files
bqkc/.github/_includes/js/modal-hash-js.html
Nasir Anthony Montalvo 0a854da998 reconnect
2026-01-26 02:25:43 -06:00

11 lines
384 B
HTML

<script>
window.addEventListener('load', function () {
if (window.location.hash) {
/* if url has a hash, open the related item modal */
var hashModal = decodeURIComponent(location.hash.substr(1));
if (document.querySelector('#' + hashModal + 'Card a')) {
document.querySelector('#' + hashModal + 'Card a').click();
}
}
});
</script>