When a user types some input, the input disapears as soon as they click in a second input box.
I don't know what I can do to stop this from happening any ideas would be great.
Www.1pw.co.UK/theme/contact.html
Code:
<html> <head> <title>Axia Mobile</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0;" /> <meta name="apple-mobile-web-app-capable" content="yes" />
<link type="text/css" rel="stylesheet" href="styles/style.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> <script type="text/javascript" src="js/main.js"></script>
</head>
<body> <div id="page"> <!-- Page wrapper --> <div id="menu"> <!-- Top menu --> <div><a href="about.html"><img src="images/home_buttons/agent.png" alt="About" /><br /><span>About</span></a></div> <div><a href="services.html"><img src="images/home_buttons/briefcase.png" alt="Services" /><br /><span>Services</span></a></div> <div><a href="blog.html"><img src="images/home_buttons/chat-.png" alt="Blog" /><br /><span>Blog</span></a></div> <div><a href="portfolio.html"><img src="images/home_buttons/addressbook.png" alt="Portfolio" /><br /><span>Portfolio</span></a></div> <div class="active"><a href="contact.html"><img src="images/home_buttons/email.png" alt="Contact" /><br /><span>Contact</span></a></div> </div> <div id="main"> <!-- Main content area --> <h2>Contact us</h2> <p>AxiaMobile comes with <b>full working PHP contact form</b> with simple one-click set-up.</p> <p><img class="bordered_picture fullwidth" src="http://maps.googleapis.com/maps/api/staticmap?center=-4,30&zoom=11&size=1600x1200&sensor=true"></p> <form id="form" method="post" action="contact.php"> <input type="text" required="required" name="name" value="Your name..." onclick="this.value=''" onblur="this.value='Your name...'" /> <input type="text" required="required" value="Your email..." name="email" onclick="this.value=''" onblur="this.value='Your email...'" /> <textarea cols="10" required="required" rows="10" name="message" onclick="this.value=''" onblur="this.value='Your message...'">Your message...</textarea> <input type="submit" class="button FancyBlue" value="Send message" /> </form>
</div> <div id="footer"> <!-- Footer --> <a href="index.html"><button><img src="images/home.png" alt="Home" />Home</button></a> <button onclick="$('html, body').animate({scrollTop: '0'}, 700);">Top</button> </div>
</div> </body>