# jQuery-plugin-attributeObserver **Repository Path**: mirrors_FGRibreau/jQuery-plugin-attributeObserver ## Basic Information - **Project Name**: jQuery-plugin-attributeObserver - **Description**: jQuery plugin for observing html element's property changes - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # jQuery AttributeObserver [![Gittip](http://badgr.co/gittip/fgribreau.png)](https://www.gittip.com/fgribreau/) jQuery AttributeObserver allow developer to bind handler to listen to HTML element's attribute changes. ## Usage $('#el').AttributeObserver(attr || callback, callback, [delay]); //Or in the real word: $('title').AttributeObserver('text', function(oldValue, newValue){ alert(['Page title changed from ',oldValue,' to ',newValue].join('')); }, 1000); //This only works with iFrame on the same domain $('iframe').AttributeObserver('src', function(oldValue, newValue){ alert(['iFrame src changed from ',oldValue,' to ',newValue].join('')); }, 1000); ## Donate [Donate Bitcoins](https://coinbase.com/checkouts/fc3041b9d8116e0b98e7d243c4727a30)