Skip to content

Instantly share code, notes, and snippets.

@tobstarr
Created August 3, 2009 14:29
Show Gist options
  • Save tobstarr/160580 to your computer and use it in GitHub Desktop.
Save tobstarr/160580 to your computer and use it in GitHub Desktop.
function anyChecked(node) {
if (node.select(":checked").length == 0) {
alert("Es muss mindestens eine Bestellung ausgewählt werden!")
return false
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment