Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
    <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $('input').button().click(function (event) {
                $('#output').append($('.ui-state-active').length);
            }).change(null, function (event) {
                $('#output').append($('.ui-state-active').length);
            });;
        });
    </script>
</head>
<body>
    <input type="checkbox" id="check" /><label for="check">Toggle</label>
  <div id='output'/>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers