We Recommend

Pro JavaScript Techniques Pro JavaScript Techniques
Pro JavaScript Techniques is the ultimate JavaScript book for the modern web developer. It provides everything you need to know about modern JavaScript, and shows what JavaScript can do for your web sites. This book doesn't waste any time looking at things you already know, like basic syntax and structures.


Posted By

jachin on 04/18/08


Tagged

form link html anchor submit


Versions (?)


submit a form with an anchor tag (link)


Published in: JavaScript 


Name the form what ever you like, but make sure that is reflected in the javascript.

  1. <form id="my_form">
  2. <!-- More HTML -->
  3. <a href="javascript:{}" onclick="document.getElementById('the_form').submit(); return false;">submit</a>
  4. </form>

Report this snippet 

You need to login to post a comment.