Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <title>My Page</title>
- <script type="text/javascript" src="http://code.jquery.com/jquery-2.0.2.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- $("#kontakt").submit(function () { return false; });
- });
- </script>
- </head>
- <body>
- <form id="kontakt" method="post" action="send.php">
- <br>
- <input type="text" name="von" id="von" placeholder="name">
- <br>
- <input type="text" id="mail" name="mail" placeholder="email">
- <br>
- <input type="text" id="betreff" placeholder="betreff">
- <br>
- <textarea style="width:500px;height:400px;" id="nachricht" name="nachricht"></textarea>
- <input id="submit" type="submit" value="senden">
- </form>
- <div id="response"></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement