Files
Sam Thorogood 8af19b8ca9 move
2020-12-04 09:18:01 +11:00

9 lines
221 B
JavaScript
Executable File

onload = function() {
document.getElementById('main-form').onsubmit = function(e) {
e.preventDefault();
document.getElementById('output').innerHTML =
document.getElementById('your-name').value;
};
};