I'm using Prettify for syntax highlighting, but it doesn't work on dynamically generated code.

I have a form that when submitted generates code and displays it (without refreshing) in <div id="output></div>, but prettify doesn't work on this code, is there any workaround?

Many thanks!

link|improve this question

How are you calling prettify? – Vincent Ramdhanie Apr 4 '10 at 4:13
body onload=.... – Nimbuz Apr 4 '10 at 4:27
Not exactly answer-worthy, but, try <div id="output"></div> - with the second quote-marks or whatever they're called (it's missed out from the other side of output) – Jack Webb-Heller Apr 4 '10 at 17:20
feedback

2 Answers

up vote 1 down vote accepted

Make sure you recall Prettify once the new code is loaded.

You will need to add a handler to the 'Submit' event. I don't know if you are using a framework or raw JS, so I can't give a code example.

link|improve this answer
feedback

There's a nice solution at http://www.codingthewheel.com/archives/syntax-highlighting-stackoverflow-google-prettify.

In short:

  • listen for an event: user is inactive for X seconds (after key press)
  • run the Prettify function prettyPrint()
  • (if a user starts typing before X seconds do not run Prettify)

.

$(document).ready(function() {
  $('#mytextarea').keydown(function() {
    $(this).stopTime();
    $(this).oneTime(1000, function() { 
      /* launch the Prettify here */
    });
  });
});

code copied from http://www.codingthewheel.com/archives/syntax-highlighting-stackoverflow-google-prettify

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.