Following javascript code throws error
Uncaught TypeError: Object #<HTMLSpanElement> has no method 'getElementById'
If this is not allowed how do I search for the existence of particular element inside other element?
var googlePlusPosts = document.getElementsByClassName("mo fj");
for (var i = 0; i < googlePlusPosts .length; ++i) {
decryptElements = googlePlusPosts[i].getElementById('decrypt-button');
.
.
.
.getElementById()is a method of thedocumentobject. – nnnnnn Nov 22 '11 at 3:22