I use syntaxhighlighter in my page and it works well.
<pre id="code" class="brush:js">
some code here
</pre>
But it doesn't work when I save to a html file then use jquery load function to load them.
$(function(){
$("#test").load("test.html");
});
Everything is displayed well except the code scope. Could some one tell me why? Thx!
Change
#test
into#code
: