Javascript Form How to - Get Reset Button type








Question

We would like to know how to get Reset Button type.

Answer


    <!--from   ww w. java 2s  .co  m-->
<html>
<body>
    <form name="form1">
        Enter Name: <input type="text" Name="name" Size=15>
        <br>
        Enter Phone: <input type="text" Name="phone" Size=10>
        <br><br>
        <input type="reset" name=resetbutton value=Reset
           onClick='console.log("The button type is: " + document.form1.resetbutton.type)'>
    </form>
</body>
</html>

The code above is rendered as follows: