cod javascript functional in body si nefunctional in head
Scris: Vin Noi 04, 2016
Salutare,
Am urmatorul cod js ce depinde de jQuery:
Daca il pun in head sau in fisier extern nu functioneaza, daca il pun in body este perfect functional, de ce functioneaza asa?
Multmesc!
Am urmatorul cod js ce depinde de jQuery:
Cod: Selectaţi tot
<script type="text/javascript">
$(".parent").each(function(index){
var group = $(this).data("group");
var parent = $(this);
parent.change(function(){ //"select all" change
$(group).prop('checked', parent.prop("checked"));
});
$(group).change(function(){
parent.prop('checked', false);
if ($(group+':checked').length == $(group).length ){
parent.prop('checked', true);
}
});
});
</script>
Multmesc!