D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
wavebeem
Full window
Github gist
A simple addition calculator
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Wobsite</title> </head> <body> <h1>Wobsite</h1> <input type="number" id="number-1" value="1"> <input type="number" id="number-2" value="2"> <span id="sum"></span> <script>var module = {};</script> <script src="main.js"></script> <script>module.exports.main();</script> </body> </html>