In quiz.js in the function buildQuiz() there is a strange mix of jQuery/non-jQuery syntax.
$("#linkBack").html("<a href='" + url.attr("protocol") + "://" + url.attr("host") + url.attr("directory") + "start.html'>generate new quiz</a>");
We probably should be doing this the jQuery way:
var href = $('<a>',{
text: 'MyText',
href: 'http://myurl.com'
});