Bonjour,
Je souhaiterais faire un simple toggle sur un attribut mais je ne comprends pas pourquoi le else ne fonctionne pas.
Modifié par Hermann (30 Oct 2024 - 16:29)
Je souhaiterais faire un simple toggle sur un attribut mais je ne comprends pas pourquoi le else ne fonctionne pas.
$( function() {
$( "#langs" ).on( "click", function() {
if ($("#lang-list").attr("hidden")) {
$("#lang-list").removeAttr("hidden");
} else {
$("#lang-list").attr("hidden");
};
});
});
Modifié par Hermann (30 Oct 2024 - 16:29)