Jump to content

Checkbox value


feri_soft

Recommended Posts

i wrote this function for another site, I hade a checkbox call "col" for collection and one called "del" for delivery becuase you canonly have one or the other this function deselctecs one if the other one is clicked and vice versa, it may help you wioth your codeing
[code]
function swapColDel()
{
if (document.getElementById("col").checked == true)
{
  document.getElementById("del").checked = false  }
if (document.getElementById("del").checked == true)
{
  document.getElementById("col").checked = false  }
}
[/code]
Link to comment
https://forums.phpfreaks.com/topic/34596-checkbox-value/#findComment-163046
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.