Advertisement
nikolayneykov92

Untitled

Jun 24th, 2019
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. function solution () {
  3.     let demo = document.querySelector('button[type="submit"]')
  4.     demo.addEventListener('click', function (e) {
  5.         e.preventDefault()
  6.         console.log('asd')
  7.     })
  8. }
  9.  
  10. solution()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement