Advertisement
Guest User

Untitled

a guest
Sep 8th, 2013
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.    
  3.     <head>
  4.         <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5.         <title>My Page</title>
  6.         <script type="text/javascript" src="http://code.jquery.com/jquery-2.0.2.js"></script>
  7.         <script type="text/javascript">
  8.             $(document).ready(function () {
  9.                 $("#kontakt").submit(function () { return false; });
  10.             });
  11.         </script>
  12.     </head>
  13.    
  14.     <body>
  15.         <form id="kontakt" method="post" action="send.php">
  16.             <br>
  17.             <input type="text" name="von" id="von" placeholder="name">
  18.             <br>
  19.             <input type="text" id="mail" name="mail" placeholder="email">
  20.             <br>
  21.             <input type="text" id="betreff" placeholder="betreff">
  22.             <br>
  23.             <textarea style="width:500px;height:400px;" id="nachricht" name="nachricht"></textarea>
  24.             <input id="submit" type="submit" value="senden">
  25.         </form>
  26.         <div id="response"></div>
  27.     </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement