Skip to content

Instantly share code, notes, and snippets.

@Hoffs
Last active May 15, 2017 18:52
Show Gist options
  • Save Hoffs/5c8febb3479095612196d87869f9cda9 to your computer and use it in GitHub Desktop.
Save Hoffs/5c8febb3479095612196d87869f9cda9 to your computer and use it in GitHub Desktop.
questionnaire no more
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