php - How to select all rows HTML table ← (PHP, JQuery, HTML)

Solution:

Tyr this:

$('#all').on('click', function(){
    $(':checkbox').prop("checked",$(this).is(':checked'));
});

http://jsfiddle.net/Dfzdh/

Answer



Solution:

I think you would need to use jQuery Look at the sibblings method. Here is a question close to yours. OnClick change all sibling table rows jQuery

I havent heard about any "onChange"-equivalent function in PHP yet

Source