• Resolved Augusto Gentile

    (@agugentile)


    Hi there,

    I am facing an issue while using the quiz at the end of the course.
    I have choosen 2 true/false questions and when I try to start the test, it goes into an infinite loop whitout any chance to answer questions or finish the course.

    Does any one have a clue? I have disabled multiple plugins with no success.
    My theme is Divi

    Many thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello @agugentile,
    In your JS file( main js ) add this code,

    $(input).keypress(
    function(event){
    	if (event.which == '13') {
    		event.preventDefault();
    	}
    });

    That’s will help you.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘[NSFW] Quiz crashed’ is closed to new replies.