I want to display a div content with jquery if a button is pressed. For example,
<button id="b1">Show text</button>
if the button is pressed then show this text div.
<div id="text">hello world.</div>
I've tried to use the jquery functions "fadein", "toggle", "slidedown".. however I have a problem that by default it shows the div content. I want that by default it hides the content, and shows only if the button is clicked. How I can do this? I'll highly appreciate your help with some basic example if possible.