I think it used to work in the past but now code highlight has no effect on JavaScript whatsover.
jQuery example:
$(document).keypress(function (event) {
var key = String.fromCharCode(event.which);
$("#Container li").each(function (index) {
var text = $(this).text();
if (text.length > 0 && text.charAt(0).toLowerCase() == key.toLowerCase())
{
$("#Container").scrollTop($(this).position().top);
break;
}
});
});
Pure javascript example:
<script type="text/javascript">
for (var i = 0; i < 5; i++) {
alert("hello" + i);
}
</script>
Has anything changed? Maybe I'm doing something wrong?


<pre class="prettyprint">, as used by a JavaScript code prettifier. – Arjan Dec 12 '10 at 13:57class="prettyprint"(like using Firebug, or Chrome's Web Inspector), and then runjavascript:prettyPrint()in the location bar. That will indeed make your examples work just fine. It seems theclass="prettyprint"is just lacking in the HTML. – Arjan Dec 12 '10 at 14:02