Skip to content

Instantly share code, notes, and snippets.

@marschhuynh
Last active January 17, 2018 01:52
Show Gist options
  • Save marschhuynh/4a627b227eb307b32ad40f1eac47509e to your computer and use it in GitHub Desktop.
Save marschhuynh/4a627b227eb307b32ad40f1eac47509e to your computer and use it in GitHub Desktop.
$(".quesResult .quesRadioList, .quesCheckList").each(function(index, node){
inps = $(this).find(":input")
ans = Math.floor((Math.random() * inps.size()));
inps.each(function(idx, inp){
if (ans === idx) {
$(this).prop("checked", true)
}
})
})
$(":textarea").text("Có ghi được đâu mà đánh giá")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment