Ok, I will paste the one that works on the web, but doesn't work on the Blog entry, sorry for the longer code snippet, but this proves my point. Java Script isn't working in the Blog entry, but works on the web.
CODE
<html>
<head>
<title>JavaScript Test</title>
<script language="JavaScript">
<!-- Hide JavaScript from older browsers
/* Function - displaySelections() */
function displaySelections()
{
var player1 = "Marhall Faulk"
document.clear()
document.writeln("<H2>Results of your selection</h2>");
document.writeln(player1);
document.writeln("<br>");
}
// end hide JavaScript -->
</Script>
</head>
<body>
<form name="frmPredictionPro">
<br>
<font size="3" color="#6188AA">
<b>Team Predictions</b>
</font>
<Table width="50%">
<tr>
<td><b>Quarterback</b>
<td>
<select name="qbTeam1">
<option>Favre, Brett
<option>Bulger, Marc
<option>Garcia, Jeff
<option>Brady, Tom
<option>Griese, Brian
<option>Green, Trent
<option>McNabb Donovan
<option>Maddox, Tommy
<option>Gannon, Rich
<option>Blake, Jeff
<option>Manning, Peyton
<option>Culpepper, Daunte
<option>Peete, Rodney
<option>Vick, Michael
<option>Brooks, Aaron
<option>Pennington, Chad
<option>Matthews, Shane
<option>Kitna, John
<option>Miller, Jim
<option>McNair, Steve
<option>Plummer, Jake
<option>Brunnel, Mark
<option>Collins, Kerry
<option>Brees, Drew
<option>Hasselbeck, Matt
<option>Carr, David
<option>Harrington, Joey
<option>Lucas, Ray
<option>Fiedler, Jay
<option>Chandler, Chris
</select>
</Table>
<input type="submit" name="purchase Selections"onClick="displaySelections()">
<input type="reset" name="Clear Selections">
</form>
</body>
</html>
This code works online at
http://www.geocities.com/predictionpro/js.htmBut paste it into a Blog entry then run it, when you hit the submit button it gets an error, but no errors on the website posted above. Strange eh!?