Skip to content

Instantly share code, notes, and snippets.

@xjsender
Created August 12, 2015 02:42
Show Gist options
  • Select an option

  • Save xjsender/c15d6ad0ccb89ef45fb9 to your computer and use it in GitHub Desktop.

Select an option

Save xjsender/c15d6ad0ccb89ef45fb9 to your computer and use it in GitHub Desktop.
Get Selected Ids in the List Button
idElements = document.getElementsByName('ids');
ids = new Array();
for (i = 0; i < idElements.length; i++) {
ele = idElements[i];
if (ele.checked) {
ids.push(ele.value);
}
}
console.log(ids);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment