Q&A
Ask and answer questions to make information more available to wider audiences.
Trey Wolffe @wolffetrey   04, Jul 2023 12:00 AM
jquery method to hide selected elements
Which jquery method is used to hide selected elements?
answers 1
 
Answer 1
Ryan Burden @ryanburden70   07, Jul 2023 02:51 PM
The hide() function in jQuery is used to try and hide the chosen element. 
For Example - Suppose we need to hide a division tag, that consists of id = “ib”. Then the jQuery code will be - $(“#ib”).hide();