Skip to content

Instantly share code, notes, and snippets.

@lukyth
Created February 29, 2016 21:49
Show Gist options
  • Save lukyth/482a1cbbde73827c4186 to your computer and use it in GitHub Desktop.
Save lukyth/482a1cbbde73827c4186 to your computer and use it in GitHub Desktop.
var inputs = document.querySelectorAll('input[value="5"]')
inputs.forEach(function(el){
el.checked = true
})
var submit = document.querySelector('input[name="OK"]')
submit.click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment