Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Do we have getElementsByClassName in javascript?

I am recieving an error below in IE only, not in any other browser:

Object doesn't support property or method 'getElementsByClassName' 

So I am assuming it does not suppose getElementByClassName in IE. My question is then what should be an equivalent to use in stead of this in example below:

var numb = document.getElementsByClassName('num_questions');
share|improve this question
1  
Check this answer: stackoverflow.com/a/1820237/921204 – techfoobar Feb 1 at 12:42
Look in the "Related" column in the sidebar --> – Juhana Feb 1 at 12:44

marked as duplicate by Juhana, mplungjan, CloudyMarble, Konstantin D - Infragistics, Curt Feb 1 at 13:31

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 0 down vote accepted

try this

var numb = $('.num_questions');
share|improve this answer

IE < 9 does not have getElementsByClassName support.

Since you are using jQuery you can achieve the same by $('.num_questions')

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.