Polymer: manually submitting a form
In polymer I'm trying to manually submit a form. My form looks like this: <form id="myForm" on-submit="{{ submitForm }}"> <input class="text" value="{{ someValue}}"> <button type="submit">Submit</button> </form> And in the polymer object I have: submitForm: function(e) { e.preventDefault(); } Whenever I try to do the following: document.getElementById('myForm').submit(); the form totally ignores the on-submit attribute and posts the form to a new page. I'm building a on-screen keyboard for anyone wondering why I would want to do this. I need to submit the form whenever someone hits the enter