UNPKG

domnode-dom

Version:

DOMNode streams for HTMLElements

43 lines (42 loc) 1.19 kB
<!DOCTYPE HTML> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <pre id="element"></pre> <form id="form" action="." method="POST"> <div> <h2>type=text</h2> <input type="text" id="textinput" name="text" /> </div> <div> <h2>type=radio</h2> <input type="radio" id="radioinput_0" name="radio" value="0" /> <input type="radio" id="radioinput_1" name="radio" value="1" /> </div> <div> <h2>select</h2> <select id="selectinput" name="select"> <option value="">---</option> <option value="garybusey">Gary Busey</option> <option value="stevedoocy">Steve Doocy</option> </select> </div> <div> <h2>type=checkbox</h2> <input type="checkbox" id="checkboxinput" name="checkbox" value="0" /> </div> <div> <h2>textarea</h2> <textarea id="textareainput" name="textarea"></textarea> </div> <div> <h2>submit</h2> <input id="submitinput" type="submit" name="Submit" /> </div> </form> <script type="text/javascript" src="./main.bundle.js"></script> </body> </html>