Jump to content

toggle_checkboxes


Destramic

Recommended Posts

could anyknow tell me why this wouldnt work please?

[code]
function toggle_checkboxes(form)
{
var elements = form.elements;

for (var i = 0; i < elements.length; i++)
{
var element = elements[i];
var type    = element.type;

if (type.toLowerCase() == "checkbox")
{
element.checked = checked_value;
}
}

if (checked_value)
{
checked_value = false;
}
else
{
checked_value = true;
}
}
[code][/code][/code]
Link to comment
https://forums.phpfreaks.com/topic/27268-toggle_checkboxes/
Share on other sites

im unable to get this to work with check boxes

[code]

function toggle_checkboxes(the_form)
{
for (var i = 0; i <the_form.length; i++)
{
if (the_form[i].type == 'checkbox')
{
the_form[i].checked = checkbox_status;
}
}

if (checkbox_status)
{
checkbox_status = false;
}
else
{
checkbox_status = true;
}
}

<span onclick="toggle_checkboxes(this.form);">Check/Uncheck all</span>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/27268-toggle_checkboxes/#findComment-129654
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.