Last active
May 15, 2017 18:52
-
-
Save Hoffs/5c8febb3479095612196d87869f9cda9 to your computer and use it in GitHub Desktop.
questionnaire no more
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
var count = $(".answer").length; | |
var i = 0; | |
$(".answer").each(function () { | |
i++; | |
$(this).find('.answer-item').not('[type=hidden]').children('input').prop('checked', true); | |
if (i == count) { | |
$('button:contains("Tęsti"), button:contains("Pateikti")').trigger('click'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment