Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function getFormData()
- {
- var choice = document.getElementsByName("question");
- for (var i = 0; i < choice.length; i++)
- {
- if (choice[i].checked)
- {
- console.log("choice is: " + choice[i].value);
- console.log("type: " + typeof(choice[i].value));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement