Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <script src="https://code.jquery.com/jquery-1.11.3.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JavaScript es single thread</title>
</head>
<body>
  <button>Pulsa aquí </button>
  <script>
    $('button').click(function () {
      var answer = prompt("¿Cómo te llamas?");
      console.log(answer);  
    });
    $('button').click(function () {
      console.log("¡Bienvenido");  
    });
  </script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
juanda99pro
0viewers