Javascript examples for jQuery Method and Property:hide
Hide and show one specific div
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.4.4.min.js"></script> <script type="text/javascript"> $(window).load(function(){//from w w w . j a v a 2 s . co m $(document).ready(function(){ $('#div2').hide(); $('#show2').click(function(){ $('#div2').show(); }); }); }); </script> </head> <body> <div id="div1"> hi </div> <div id="div2"> bye </div> <span id="show2">click on me</span> </body> </html>