Hacker News new | past | comments | ask | show | jobs | submit login

I would like to mention that when you working over a stable JS DOM manipulation framework you can intercept events and easily create your custom mutation detection solution; fast and cross-browser.

A little example using jQuery:

    _append = $.fn.append
    $.fn.append = function(){
        $(this).trigger("mutated");
        return _append.apply(this,arguments)
    }



Consider applying for YC's W25 batch! Applications are open till Nov 12.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: