html - how to hide a <div> part from tabs -


I have some & lt; Div id = "hideclass" & gt; In the jquery tab I want to hide or not. I want to be able to click on some buttons after this. How do i do this

Use this CSS:

  # Hideclass {Display: No one; }  

and jQuery:

  $ ('# button'). Click (function () {$ ('# hideclass').;});  

Or you want to toggle it:

  $ ('# button'). Click (function () {$ ('# hideclass') .slideToggle ();});  

Where #button is the ID of the button, which is clicked, will show the div:

  & lt ; Button id = "button" & gt;  

Comments

Popular posts from this blog

Eclipse CDT variable colors in editor -

AJAX doesn't send POST query -

wpf - Custom Message Box Advice -