I need to have a function executed each time the preview is refreshed for a WMD control.

Is there some function I can use to insert a hook for preview refreshes?

link|improve this question

feedback

1 Answer

var editor1 = new Markdown.Editor(converter1);

editor1.hooks.set("onPreviewRefresh", HtmlUpdated);

editor1.run();

}

function HtmlUpdated(){
...deal with it...
}
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.