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.

hey guys, i wanna create the simplest bookmarklet for my browser.

javascript:document.getElementsByClassName('source').style.visibility='visible';

I have multiple div.source in my body. By default they are set to .source { display:none; } with css.

My console tells me: Uncaught TypeError: Cannot set property 'display' of undefined

When I click the bookmarklet all .source divs should be visible. What am I doing wrong here?

share|improve this question
try using for each loop – experimentX Mar 3 '11 at 10:59

3 Answers

up vote 13 down vote accepted

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

var divs = document.getElementsByClassName('source');
for(var i=0; i<divs.length; i++) { 
  divs[i].style.display='block'
}

And also as @ionoy mentioned, use display attribute. I hope that helps.

http://jsfiddle.net/erick/rb7bn/1/

share|improve this answer
2  
javascript:(function() { var divs = document.getElementsByClassName('source');for(var i=0; i<divs.length; i++) divs[i].style.display='block'; })(); – ionoy Mar 3 '11 at 11:19
thank you! perfect! – matt Mar 3 '11 at 11:21

Go for display. It's works fine with many browsers and in many cases.

share|improve this answer

There is 'visibility' and there is 'display'. They are quite different beasts.

W3Schools:

visibility

display

share|improve this answer
that doesn't change anything. my console tells me: Uncaught TypeError: Cannot set property 'display' of undefined – matt Mar 3 '11 at 11:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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