Skip to content

timbonicus/jquery-mutationobserver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

jquery-mutationobserver

A jQuery plugin to add notification of DOM mutation events issued through jQuery's own mutation functions.

With DOMNodeInserted deprecated and MutationObserver not yet gaining full browser support, this plugin provides a simple way to receive notification when a descendant DOM node is mutated.

Usage:

var listenerFn = function() {
  alert('mutation!')
};
$(selector).mutationObserver(listenerFn);
$(selector).append($('<div/>'))

About

A jQuery plugin to add notification of DOM mutation events.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published