Skip to content

Instantly share code, notes, and snippets.

@carmoreira
Created February 23, 2021 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carmoreira/f2ff84ab5ab71d2c0f196d1ce4620f40 to your computer and use it in GitHub Desktop.
Save carmoreira/f2ff84ab5ab71d2c0f196d1ce4620f40 to your computer and use it in GitHub Desktop.
trigger click on full li container - advisor quiz
jQuery('li.quiz_unselected_answer').each(function(){
jQuery(this).on('click',function(){
jQuery(this).find('label').trigger('click');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment