All pastes #2074948 Raw Edit

Something

public javascript v1 · immutable
#2074948 ·published 2011-06-05 08:11 UTC
rendered paste body
function checkAll() {    var check = $('div[id="uniform-undefined"] span');    var c;    if (check[0].className == "") {        c = 'checked';    } else {        c = '';    }    for(var i = 0; i < check.length; i++) {        check[i].className = c;    }    if (c == '') {        $('input[type="checkbox"]').each(function() {            $(this).removeAttribute('checked');        });    } else {        $('input[type="checkbox"]').each(function() {            $(this).attr('checked', true);        });    }}