Hide, show & toggel jquery A. Hide $("button").click(function(){ $("p").hide(1000); // 1 second takes time for hide }); B. Show $("button").click(function(){ $("p").show(1000); }); C. Toggle $("button").click(function(){ $("p").toggle(1000); }); You Might Also Like Owl Carousel October 14, 2023 Get & Set Content and Attributes August 2, 2023 Append, prepend, after & before in jquery August 2, 2023 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.