Skip to content

Instantly share code, notes, and snippets.

@QuestionDevelopment
Created August 23, 2013 19:58
Show Gist options
  • Save QuestionDevelopment/6323356 to your computer and use it in GitHub Desktop.
Save QuestionDevelopment/6323356 to your computer and use it in GitHub Desktop.
function return_agent(theForm) {
var radioSelected = false;
for (i = 0; i < theForm.agent_id.length; i++)
{
if (theForm.agent_id[i].checked)
radioSelected = true;
}
if (!radioSelected)
{
alert("Please select one of the agents is selected.");
return (false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment