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>
<table id = "productos">
    <thead>
        <tr>
            <th>Producto</th>
            <th>Costo</th>
            <th>Opción</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Manzana</td>
            <td class = "costo">12.57</td>
            <td>
                <label>Eliminar</label>
            </td>
        </tr>
        <tr>
            <td>Sandía</td>
            <td class = "costo">35.41</td>
            <td>
                <label>Eliminar</label>
            </td>
        </tr>
        <tr>
            <td>Melón</td>
            <td class = "costo">18.35</td>
            <td>
                <label>Eliminar</label>
            </td>
        </tr>
        <tr>
            <td id = "total" colspan = "3"></td>
        </tr>
    </tbody>
    </table>
</body>
</html>
Output

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

Dismiss x
public
Bin info
Alexis88pro
0viewers