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 working on a simple javascript code.

Based on the condition I should change the visibility of the tag from hidden to visible.

I should use javascript alone. No jQuery or AJAX. Any idea or suggestion please.

share|improve this question
You can do it using only CSS3, or using JavaScript can You use jsfiddle.net to put code and give us some link? – bumerang Jan 16 at 10:25
What have you tried ? – Панайот Толев Jan 16 at 10:36

4 Answers

up vote 2 down vote accepted

Using the visibility attribute:

Show the div with id="yourID":

document.getElementById("yourID").style.visibility = "visible";

To hide it:

document.getElementById("main").style.visibility = "hidden";

Using the display attribute:

Show:

document.getElementById("yourID").style.display= "block";

Hide:

document.getElementById("yourID").style.display= "none";
share|improve this answer
Looks good to me – surfitscrollit Jan 16 at 10:58

Visible:

var elem = document.getElementById("IdOfEl");
elem.style.display="block";

Hide:

var elem = document.getElementById("IdOfEl");
elem.style.display="none";
share|improve this answer
5  
this is not the same as settings visibility. – bumerang Jan 16 at 10:26
+1 to your comment – Панайот Толев Jan 16 at 10:37
<div id="contentDiv">
    This is the content .
</div>

if you want to change the visibility of div with id="contentDiv" using javascript then you can do with..

var eleDiv = document.getElementById("contentDiv");


    // based on condition you can change visibility
if(eleDiv.style.display == "block") {
        eleDiv.style.display = "none";
}
else {
    eleDiv .style.display = "block";
}

Hope this code helps you........

share|improve this answer

Call this function when you want to show the div. Write that conditions in your segment/case.

function showDiv() {
    document.getElementById('divId').style.display = 'block';   //  or 'inline'
}

Let me know your feedback.

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.