Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have content that will be embedded under a submenu or a sub-table -- I am not exactly sure which will be the best way to display this content, but I want it to be hidden until the user clicks to activate the content-table. For instance:

"Example 1" -Hidden SubExample1 -Hidden SubExample2

and then when you click "Example 1":

"Example 1" -Available SubExample1 -Available SubExample2

Any suggestions? Thanks all!

share|improve this question
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance. – iambriansreed Jul 23 '12 at 15:23

1 Answer

This example may not be what you want to do but I'll quickly explain Jquery and maybe you'll figure out your specific issue on your own (hard to tell what you are asking for, just a menu, or dropdown div with content?).

Here is an example: http://jsfiddle.net/ycAhA/5/

Its a little more advanced than the example I'm going to explain.

Say you have this HTML:

<ul class="menu">
<li class="dropmenu">Example1</li>
<ul>
<li class="dropmenu">Example2</li>
<ul>
<li>Example2a</li>
</ul>
<li>Example3</li>
</ul>
</ul>​

And you want every UL element inside of the classes dropmenu to hide when page opens, and open on click.

JQUERY with Comments:

$(document).ready(function(){ //This line is usually default for jquery, where you put all of your code inside for jquery, it says when the document loads do my code
    $(".dropmenu").next("ul").hide();//This line hides the ul's directly after dropmenu
    $(".dropmenu").click(function(){//This line says, if dropmenu is clicked run this function
        $(this).next("ul").toggle();//This line toggles the ul after dropmenu, on if its off and off if its on etc
    });
});​

If you want to learn more Jquery visit Jquery.com and search for Jquery questions here.

I would also suggest learning how to do this kind of stuff in raw Javascript, since it will probably run much faster considering you won't be loading all of Jquery library every time you want to do something so simple.

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.