I have been using Polymer for a short time, and now I want to get the paper input value. I do not know how I can do this. This does not work:
this.form.password
I want to get the value of this field:
<paper-input label="Password" type="password" id="password" name="password" size="25" value=""></paper-input>
I also want to get Input to send email input:
<paper-input label="Login" id="email" name="email" size="25" value=""></paper-input>
For sending, I use:
<paper-button raised value="Login" type="submit" onclick="formhash(this.form, this.form.password);">Login</paper-button>
With normal input fields this works.
source share