jquery - How to hide and toggle content -
how can hide content without disturbing rest of content in jquery? need toggle also?
.css{visibility:hidden}
doesn't me toggle.
you can toggle element p or particular class or id.
<script> $(document).ready(function(){ $("button").click(function(){ $("your_element_neme").toggle(); }); }); </script>
Comments
Post a Comment