Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
    <form id="compra">
        <section>
            <div>
                <label for="bruto">Total bruto:</label>
            </div>
            <div>
                <input type="text" id="bruto" placeholder="Ingrese el valor total bruto" autofocus />
            </div>
        </section>
        <section>
            <div>
                <label for="tarjeta">Seleccione una tarjeta:</label>
            </div>
            <div>
                <select id="tarjeta">
                    <option value="0">MasterCard</option>
                    <option value="1">Visa</option>
                    <option value="2">Diners Club</option>
                </select>
            </div>
        </section>
        <section>
            <div>
                <label>Total neto:</label>
            </div>
            <div>
                <output id="neto"></output>
            </div>
        </section>
    </form> 
</body>
</html>
Output

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

Dismiss x
public
Bin info
Alexis88pro
0viewers