Click Here to Select All

One
Two
Three
Four
Five

Source Code

<script Language="JavaScript">
function CheckAll(chk)
{
    for (var i=0;i < document.forms[0].elements.length;i++)
    {
        var e = document.forms[0].elements[i];
        if (e.type == "checkbox")
        {
            e.checked = chk.checked
        }
    }
}
</script>

 

Send mail to santhosh_emids@yahoo.com with questions or comments about this web site.
Last modified: November 16, 2000