Here is the entire body of the document, game values are hard written until I get my ajax working out:
<div id="timer"></div>
<h1>A C E E L P R</h1>
<div id="formGuess">
<form action="">
<input type="hidden" name="letters" value="aceelpr" />
<input type="hidden" name="game_id" value="1" />
<input type="text" id="guess" name="guess" />
<input type="submit" value="Go!" />
</form>
</div>
<div id="score"></div>
<ul id="answers" style="list-style-type:none;">
</ul>
Currently the AJAX request for each guess works just find by appending the result to the answers list. The idea is when the game is over, the input to guess will disappear, and the score will appear. Like I said if I add to the score to make it a string instead of a number it seems to work fine, but it seems unreasonable to arbitrarily add chars to a number to get it to work. Especially since I don't want tags around the score, I will style that div by CSS. I'm trying not to have ANY styling at all, and minimal markup involved in the js files (separation of logic and presentation).
See the attached image for the change when using the bold tags. Its exactly what I want (minus styling issues, including styling in the js and incorrect styling in my css - which I'll fix when the js works)