Skip to content

Instantly share code, notes, and snippets.

@CarlMungazi
Created November 18, 2019 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CarlMungazi/fff5666c2b0d1f2b810c835d8ecab129 to your computer and use it in GitHub Desktop.
Save CarlMungazi/fff5666c2b0d1f2b810c835d8ecab129 to your computer and use it in GitHub Desktop.
m.render(document.getElementById('app'),
m('form', {
onsubmit: (e) => {
e.preventDefault();
console.log('I am on the form element')
}
}, [
m('button', { type: 'submit'}, 'Submit')
])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment