How To Remove A Form.element.observer
I'm using Prototype 1.6. I create a new Form.Element.Observer, but is there a way to then remove it/stop it? Thanks
Solution 1:
I think this should work :
var obs = new Form.Element.Observer(element, frequency, callback);
obs.stop();
Post a Comment for "How To Remove A Form.element.observer"