I think I managed to produce something like what you wanted.
Brian was right. The letters are appearing there because you're putting them there with absolute positioning in the javascript, and there's not much you can do to fix it without messing with the JS. You had the letter absolutely positioned before via JQuery's .offset, but it just seem so much simpler to just remove that positioning entirely and let them go where they would normally with position: block, which is right on top of one another, so that's what I did:
CSS:
div#area { //<--- you had a '.' instead of '#' here. Irrelevant, but I thought I'd mention it
position: relative;
border: 1px solid;
}
span.letter {
display: block; //<--- added this
font-family: mono;
font-size: 14;
}
JS:
/*
* Draws one letter to the screen at the specified position.
*/
function createLetter(letter){ //removed extraneous parameter
var letter = $('<span class="letter">' + letter + '</span>');
$("#area").append(letter);
// letter.offset(position); Commented this out to leave letters where they are
return letter;
}
Since I removed the position parameter to the createLetter method, I also updated the one line of code where it was called in the createWord method. You seem to be passing around a parameter named position a lot, and if you apply the change I suggested I believe you'll be able to pull it out of several methods to make your code a bit more concise.
If you need them to go horizontally again, you can probably just remove the position: block with JS and maybe adding some padding to tweak it. As I said, your problem seemed so much better suited to normal positioning that I think that's the way to go.
You've also probably noticed that there's an extra J that wasn't there before. There were actually 2 J's previously, just stacked perfectly on top of each other so you couldn't seem them, but this change to normal document flow makes the first one reappear. If you need help getting rid of it I can look through your code again, but you should probably do so in another question since its so far digressed from your original problem in this one. :D