Ďuri..dik za odpoved.. Ale aj tak mi to moc nepomohlo..
Skusal som si uz ten kod nejako inac upravit, no nic..
Kód:
function selectAll(action, id) {
inputs = document.getElementById(id).getElementsByTagName("input");
for (var i = 0; i < inputs.length; ++i) {
inputs[i].checked = (action == 1)? true:false;
}
if (document.getElementById('pole').style.display == 'block')
{
document.getElementById('pole').style.display = 'none';
document.getElementById('skrtni').innerHTML = 'zaskrtnuť policka';
}
else
{
document.getElementById('pole').style.display = 'block';
document.getElementById('skrtni').innerHTML ="<a href=\"javascript:selectAll(0, 'auto')\"> Odskrtnuť </a>";
}
}
<a href="javascript:selectAll(1, 'auto')" id=skrtni> zaskrtnuť policka</a>
<a href="javascript:selectAll(0, 'auto')" id=pole style="display: none"> Odškrtnuť </a>
Chcel by som jednoducho docielit aby som po kliknuti na text
zaskrtnuť policka oznacil vsetky checkbox-y a ten text sa mi zarovan nahradil textom
odškrtnuť a tiez by mi to odznacilo checkbox-y. Uz som skusal hladat cosi aj na googli, no neviem sa k tomu nijako dopracovat..