“Onglet Changer de hachage” Réponses codées

Onglet Changer de hachage

$(document).ready(function() {
        if (window.location.hash) {
            let hash = window.location.hash;
            $('.nav-link').removeClass('active');
            $('.tab-pane').removeClass('active');
            $('.nav-link[href="' + hash + '"]').click();
        }
    });


    $('.nav-tabs a').on('click', function() {
        window.location.hash = $(this).attr('href');
    });
Ivan Cuaco

Onglet Changer de hachage

// jquery
$('a').on('click', function (e) {
    e.preventDefault();
    let link = $(this).attr('href');
    if (link.includes('#') !== false) {
    window.location.hash = this.hash.substr(1);
	}
});
Ivan Cuaco

Réponses similaires à “Onglet Changer de hachage”

Questions similaires à “Onglet Changer de hachage”

Plus de réponses similaires à “Onglet Changer de hachage” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code