samedi 26 mai 2018

toggleClass() is not working in IE11 but seems to work in all other browsers

Here is my code:

Jquery:

$("#welcome-done").on("click", function(){
    $(".welcome-box").toggleClass("hide");
})

CSS:

.hide {
    display: none;
}

It works in firefox, chrome, safari but for some reason it does not work in IE11... Does anyone know how I can solve this issue?




Aucun commentaire:

Enregistrer un commentaire