I have a few divs with class='class_name', and also have declared
var A = document.getElementsByClassName('class_name');
console.log(A[0]);
The Chrome console shows:
<div class="class_name"> div 1 </div>
The Firefox console shows:
<unavailable>
What's the issue or what otherwise is the possible cause?