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
Post a Comment