Suggestion for Lesson enhancement
Hi guys, for courses. Under edit lesson. Can the option be added that you can not move onto the next lesson until the current lesson is completed. Such as if the post has a video, the entire video must be watched before moving on. Or if the lesson has a mini quiz, or has something to read and then a mini quiz at the end that has to get answered before you can move on. Additionally, there will be a button that allows the lesson taker to skip the lesson. However, before doing so a pop up for confirmation saying "Missed content may be crucial to learning, are you sure you want to skip ahead?" will occur and they need to confirm. The confirmation message should be editable so admins can put whatever they feel is best. Also it should be a part of the div class fcom_lesson_nav
Here is a sample baseline code:
function skipLesson() { var txt; if (confirm("Missed content may be crucial to learning, are you sure you want to skip ahead?")) { txt = "You are skipping the lesson!"; } else { txt = "Please continue the lesson!"; } document.getElementById("skip_confirm").innerHTML = txt; }Of course clicking ok would skip to the next lesson and clicking cancel would keep them on the page. And the code would be integrated into the site code so its editable via UI and not just by coding.
That would be great! Thanks!
Agree, this would be a good option for course designers to have.