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:
Can getElementsByClassName change style?

I am trying to "fix" the "new" YouTube using Greasemonkey, I've been getting things to work as they should when it's with ID's, however I have been unable to modify anything with a class, it appears I am unable to select it or whatever anyways.

I have been trying to use:

document.getElementsByClassName("video-extras-sparkbar-likes").style.height='10px';

However it isn't working. :\

I'm not very familiar with Greasemonkey and what not, so would there be a reason why though my browser supports this, Greasemonkey may not?

share|improve this question

marked as duplicate by I Hate Lazy, Brock Adams, DCoder, Peter O., DocMax Dec 9 '12 at 8:02

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.

1 Answer

up vote 2 down vote accepted

You might need to loop through the results, like this:

var divs = document.getElementsByClassName('video-extras-sparkbar-likes');
for(var i=0; i < divs.length; i++) { 
  divs[i].style.height = '10px';
}
share|improve this answer
I'm sure that would work and all, however it doesn't seem to be working with Greasemonkey, or at least with this particular YouTube element. – Dylan Cross Dec 9 '12 at 21:47

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