I've an issue with queryselectorall and IE11. It works on IE10 and firefox but with last cheet Do you have a solution for having an element by his classname?
if(document.querySelectorAll(".classname"))
{
alert('ici');
document.querySelectorAll(".classname").style.display = "none";
}
The alert and display none is working on everything except Internet Explorer 11
thanks