mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-02 14:29:37 +07:00
9 lines
221 B
JavaScript
Executable File
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;
|
|
};
|
|
};
|