I need to add a class to bulk of <a> tag. I have to select the a tag using querySelectorAll method, and all elements are selected. But when I trying to add a class to them it won't added.
I have try the following example.
var qc=document.querySelectorAll(".Label ul li a");
qc.className+="newcls";
https://jsfiddle.net/ahhvovvv/
But I can add it through jQuery, but don't use jQuery.
The working jQuery code is
$(document).ready(function(){
$(".Label ul li a").addClass("newcls");
});