Turn off submit action : Form Submit « jQuery « JavaScript DHTML






Turn off submit action

    
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
        $("form").submit(function () { return false; }); 
        
        
    });
    </script>
  </head>
  <body>
     <form>
      <input type="text" />
    </form>
  </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Cancel submit event by returning false
2.Submit event
3.To trigger the submit event on the first form on the page
4.Validate form and output message