jQuery show()

Showing is another effect of jQuery. The jQuery library provides the show() method to serve this purpose. show() method is used to show the selected elements. Example: <!DOCTYPE html> <html> <head> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> <script> $(document).ready(function(){ $(“#hide”).click(function(){ $(“p”).hide(); }); $(“#show”).click(function(){ $(“p”).show(); }); }); </script> </head> <body> <p>Click on the “Hide” button and I will disappear.</p> <p>Click … Read more