Blackboard Timer

Quizzes in Blackboard do not submit when the time runs out. Some people don't like this behavior. To fix this, inserting the following into the quiz instructions should work:

<script language="javascript">
function checkTime(){
var currentTime = new Date().getTime();
if (warningTime){
if (currentTime > (warningTime + 60000)){
clearInterval(tID2);
document.forms[0].submit();
}
}
}
tID2 = setInterval("checkTime()",1000);
</script>

Nifty!

David, I know some instructors who will be happy about this.