html - <form> element not working in IE but will in chrome -
this create message input values in email using chrome, not in ie , can't figure out why?
<!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>name entry</title> </head> <body> <div> <br/> <form method="post" action="mailto:cgi55@yahoo.com?subject=from_unit4" enctype="text/plain" style="border: 1px solid #0040ff; width: 400px; height: 60px; align: center; background: #ffff00; text-align: center;" > <br/> name: <input type="text" name="name"> <input type="submit" value="submit"> <input type="reset" value="clear"> </form> </div> </body> </html>
Comments
Post a Comment