Which jQuery method is used to hide selected elements?
The jQuery hide() method is used to hide selected elements. Tip: This is similar to the CSS display: none; property. Note: Hidden elements will not be displayed at all (no longer affects the layout of the web page). Tip: To show hidden elements, look at the show() method.
Syntax:-
$(selector).hide(speed,easing,callback);
Example:-
Hide all <img> elements:
$("button").click(function(){
$("img").hide();
});
Which jQuery method is used to set one or more style properties for selected elements?
Which jQuery method is used to perform an asynchronous HTTP request?
What is the correct jQuery code for making all div elements 100 pixels high?
What scripting language is jQuery written in?
Which jQuery function is used to prevent code from running, before the document is finished loading?