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.

I'm trying to hide a DIV in a form by using: document.getElementById('cost_pass').style.visibility = 'hidden';

But when I do, the form keeps a blank space where the DIV used to be, is there a way to fix this?

share|improve this question

2 Answers

This is not an error, visibility works that way (hiding the element, but preserving the space for it). Just try

document.getElementById('cost_pass').style.display = 'none';
share|improve this answer
This is correct "visibility" maintains space. "display" hides it completely. – Diodeus Mar 5 at 19:39
Awesome, thanks! – William L. Mar 5 at 19:41
Great answer. William..May I suggest to checked Stormherz answer so he can get credited? – Riskbreaker Mar 5 at 19:57

Setting visibility to hidden just hides the DIV from the page, but the space it occupies is still there (visibility doesn't affect page flow). You should look into using the Display property to hide/show your div.

https://developer.mozilla.org/en-US/docs/CSS/display

share|improve this answer

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.