tnx mega cmq l'esempio che hai postato non funziona

questo è funzionate
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  

<script>
  $(document).ready(function(){
    
    $("button").click(function () {
      $("form").show("slow");
    });

  });
  </script>



</head>
<body>
  <button id="#show">Show it</button>
  <form id="campo" style="display: none"><textarea></textarea></form>
</body>
</html>

ma includere un intera pagina esterna è possibile?