Thank you for this great Work, it really helped me alot !!!
Keep up the great work.
btw. if it´s included in another plugin to observe a change.
how do i use:
trackValues: true,
callback: function (event) {
............
}
from within another plugin.
if (settings.observeLightBoxOpen === true) {
$('#' + settings.lightBoxOpenSelector).attrchange(function(attrName) {
trackValues: true, // <--- fails
callback: function(e) { // <--- fails
if (e.newValue === 'block') {
console.log('Attribute: ' + attrName + ' modified ');
mouseEvent = true;
} else {
console.log('Attribute: ' + attrName + ' not modified ');
mouseEvent = false;
};
};
console.log('Attribute: ' + attrName + ' modified ');
});
};
Thank you for this great Work, it really helped me alot !!!
Keep up the great work.
btw. if it´s included in another plugin to observe a change.
how do i use:
from within another plugin.