Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <form>
    <input type="text">
    <input type="submit" value="SUBMIT">
  </form>
  
  <p>This button is outside the form, not connected to it:</p>
  
  <button>Submit the form</button>
</body>
</html>
 
var myForm = document.querySelector('form'),
    myBtn = document.querySelector('button');
myForm.addEventListener('submit', function (e) {
  console.log('submitted');
  e.preventDefault();
}, false);
myBtn.addEventListener('click', function () {
  myForm.submit();
}, false);
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers