How can I submit a form using anchor tag without submit button?? I tried like this: <script language="javascript" type="text/javascript"> function editme() { document.form1.submit(); } </script> </head> <body> <form action="submit.php" method="post" name="form1"> <a href="#" onclick="editme();return false">Click Here </a> <input type='hidden' name='id' value="Congrats, it is working"> </form> </body> </html> but it is working in firefox but not in IE. Please help me...Thanks in advance..