$(document).keydown(function () {
if (!started)
nextSequence();
})
$(document).keypress(function() {
if (!started) {
$("#level-title").text("Level " + level);
nextSequence();
started = true;
}
});
For press down, change the title:
The h1 title starts out saying "Press A Key to Start", when the game has started, change this to say "Level 0".