Si lo prueban veran que pasa lo contrario... me explico bien?
Código:
Bueno espero me ayuden... saludos <!DOCTYPE html> <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#hide").click(function(){ $("p").toggle(); }); }); </script> </head> <body> <span id="hide">Hide</span> <p>If you click on the "Hide" button, I will disappear.</p> </body> </html>