This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: gpl-3.0 | |
| height: 500 | |
| scrolling: no | |
| border: yes |
I am tryin to piece things together.
i am tryin to piece things together
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const FORM = document.querySelector('form'); | |
| const submit = (e) => { | |
| // prevent default action ie page refresh | |
| e.preventDefault(); | |
| // submit form | |
| FORM.submit(); | |
OlderNewer
