I've have this polymer contact-element:
<polymer-element name="contact-element">
<template>
<paper-input label="Your Name" id="contact-name" floatingLabel></paper-input>
<paper-input multiline label="Your text here..." id="contact-message" floatingLabel></paper-input>
<paper-button label="Send Data" id="contact-submit" raisedButton></paper-button>
</template>
<script>
Polymer({});
</script>
</polymer-element>
It's included in this index.html
<form action="/sendMessage" method="GET">
<contact-element></contact-element>
</form>
Is there an submit-attribute for the paper-button or do I have to do the submit with JS?