Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

A simple demo of a live code sample

The example

This is a very simple example showing you how to do a live demo in MDN. For more information, see Live samples.

<form>
  <label>Try me<input type="text" name="name"></label>
  <input type="submit" value="go">
</form>
form {
  border-radius: 10px;
  background: powderblue;
}
var f = document.querySelector('form');

f.addEventListener('submit', function(ev) {
  ev.preventDefault();
  document.querySelectorAll('input')[1].value = 'sending';
}, false);

 

Document Tags and Contributors

 Contributors to this page: jswisher, Sheppy, codepo8
 Last updated by: jswisher,