Last active
January 17, 2018 01:52
-
-
Save marschhuynh/4a627b227eb307b32ad40f1eac47509e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".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