I want to use a JQuery "check all" function in a form like this: http://jetlogs.org/jquery/jquery_select_all.html
My problem is I am generating my form from a php script, and I don't know exactly how many checkboxes I will have in advance. I use the "array" naming convention to be able to get all the selected checkbox values in my $_POST data... so my checkboxes are like that:
<input type="checkbox" name="items[]" value="<?php echo $id ?>">
ancak bu JQuery beyan işe yaramazsa:
$("input[@name=items[]]").each(function()
{
this.checked = checked_status;
});
"@ name = ürün []", ve bazı anti-koymak için: "[]" my "öğeleri" sonunda JQuery beyanı haberci ... Ben = ürün [] gibi isim @ yazmaya çalıştım çünkü muhtemelen yırtmaç [ve] bu yüzden özel karakterler olarak kabul değil ama işe yaramadı önce ...
Birisi bir çözüm bilen ve paylaşmaya istekli ise bu harika olurdu! :)