Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Prettify from Google and Markdown and I want each time I find a pre code added in the markdown textarea to call again the prettyPrint() function.

This is my actual code:

if($('#wmd-preview').length > 0) {
  $('#wmd-preview').on('DOMNodeInserted DOMNodeRemoved',function(){
    $(this).find("pre").not('.prettyprint').addClass("prettyprint");
  });
}

But I want something like:

$(this).find("pre").not('.prettyprint').addClass("prettyprint",function(){
  prettyPrint();
});

Is there any possible way to achieve this?

share|improve this question
What would the callback do? When should it be called? – Jan Dvorak Jan 28 at 17:49
You can see the second example. The callback will call the function prettyPrint() which add style to the code inserted in the markdown preview. It should be called each time is found a new pre element without a prettyprint css class. I don't want to call it each time is rased the domnodeinserted or domnoderemoved events, but only in the case described above. – Matei Mihai Jan 28 at 17:51
1  
There is no callback for addClass. Are you saying that you want to run prettyPrint after each single pre got a prettyprint class? – FAngel Jan 28 at 17:51
@MateiMihai You could overwrite the addClass function with your own that will fire a custom event (but that won't help here, so...) – Jan Dvorak Jan 28 at 17:53
It should be called each time is found a new pre element without a prettyprint Do you mean that it should happen when new pre element is added to a DOM? – FAngel Jan 28 at 17:55
show 3 more comments

3 Answers

up vote 1 down vote accepted

As far as I understand, you need this:

$(this).find("pre").not('.prettyprint').each(function(){
   $(this).addClass("prettyprint");
   prettyPrint();
})
share|improve this answer
This is perfect! :) I can not believe I never thought of that.. Thanks – Matei Mihai Jan 28 at 18:01

The addClass jQuery function doesn't have a callback in arguments.

Read more about this in documentation.

I think that this sould work for you:

// prettyprint class is added
$(this).find("pre").not('.prettyprint').addClass("prettyprint");
// after prettyprint class is added, prettyPrint function is called
prettyPrint();
share|improve this answer
Thank you but I don't want to use this solution because the prettyPrint() function will be called each time you type any charachter in the markdown container, which is not what I want.. – Matei Mihai Jan 28 at 17:57

You could extend .addClass() jquery's method to let it accept a callback function:

;(function ($) {
    var oAddClass = $.fn.addClass;
    $.fn.addClass = function () {
        for (var i in arguments) {
            var arg = arguments[i];
            if ( !! (arg && arg.constructor && arg.call && arg.apply)) {
                arg();
                delete arg;
            }
        }
        return oAddClass.apply(this, arguments);
    }

})(jQuery);

Then use it as usual:

 $('pre:not(.prettyprint)').addClass('prettyprint',prettyPrint);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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