Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Contar checkbox</title>
</head>
<body>
    <form>
        Checkbox 1 <input type = "checkbox" />
        Checkbox 2 <input type = "checkbox" checked />
        Checkbox 3 <input type = "checkbox" />
        Checkbox 4 <input type = "checkbox" checked />
        Checkbox 5 <input type = "checkbox" />
    </form>
</body>
</html>
 
document.body.innerHTML += "Total de checkbox:" + document.querySelectorAll("form [type=checkbox]").length + "<br />Total de checkbox marcados: " + 
document.querySelectorAll("form [type=checkbox]:checked").length;
Output 300px

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

Dismiss x
public
Bin info
Alexis88pro
0viewers