Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to have an event that fires when the value of a certain variable changes? Thanks!

share|improve this question

8 Answers

Yes, object.watch (it's non-standard though). Here's my implementation that works in every current major browser.

share|improve this answer
2  
I stand corrected. I take my had off to you sir. – Luke Schafer Nov 19 '09 at 0:41
This is an excellent method, however it appears unable to properly work in IE6. That may be a deal breaker for some. – Robotsu Mar 2 '10 at 18:43
This is great, but only works on firefox for me :( – Rodrigo Jul 16 '10 at 21:40
This snippet requires the handler to return the new value. Use val = newval; handler.call(this, prop, val, newval); in the new setter instead. – thSoft Sep 15 '10 at 18:05
4  
Holden321, please comment using StackOverflow and don't spam my blog. – Eli Grey Dec 28 '10 at 18:48
show 4 more comments

No.

But, if it's really that important, you have 2 options (first is tested, second isn't):

First, use setters and getters, like so:

var myobj = {a : 1};

function create_gets_sets(obj) { // make this a framework/global function
    var proxy = {}
    for ( var i in obj ) {
        if (obj.hasOwnProperty(i)) {
            var k = i;
            proxy["set_"+i] = function (val) { this[k] = val; };
            proxy["get_"+i] = function ()    { return this[k]; };
        }
    }
    for (var i in proxy) {
        if (proxy.hasOwnProperty(i)) {
            obj[i] = proxy[i];
        }
    }
}

create_gets_sets(myobj);

then you can do something like:

function listen_to(obj, prop, handler) {
    var current_setter = obj["set_" + prop];
    var old_val = obj["get_" + prop]();
    obj["set_" + prop] = function(val) { current_setter.apply(obj, [old_val, val]); handler(val));
}

then set the listener like:

listen_to(myobj, "a", function(oldval, newval) {
    alert("old : " + oldval + " new : " + newval);
}

Second, I actually forgot, I'll submit while I think about it :)

EDIT: Oh, I remember :) You could put a watch on the value:

Given myobj above, with 'a' on it:

function watch(obj, prop, handler) { // make this a framework/global function
    var currval = obj[prop];
    function callback() {
        if (obj[prop] != currval) {
            var temp = currval;
            currval = obj[prop];
            handler(temp, currval);
        }
    }
    return callback;
}

var myhandler = function (oldval, newval) {
    //do something
};

var intervalH = setInterval(watch(myobj, "a", myhandler), 100);

myobj.set_a(2);
share|improve this answer
1  
second is good:) – Sinan Yasar Nov 19 '09 at 0:12
hehe, i'll remember eventually, for now i'm fixing code – Luke Schafer Nov 19 '09 at 0:13
fixed code, added my second idea – Luke Schafer Nov 19 '09 at 0:27

As Luke Schafer's answer (note: this refers to his original post; but the whole point here remains valid after the edit), I would also suggest a pair of Get/Set methods to access your value.

However I would suggest some modifications (and that's why I'm posting...).

A problem with that code is that the field a of the object myobj is directly accessible, so it's possible to access it / change its value without triggering the listeners:

var myobj = { a : 5, get_a : function() { return this.a;}, set_a : function(val) { this.a = val; }}
/* add listeners ... */
myobj.a = 10; // no listeners called!

Encapsulation

So, to guarantee that the listeners are actually called, we would have to prohibit that direct access to the field a. How to do so? Use a closure!

var myobj = (function() { // Anonymous function to create scope.

    var a = 5;            // 'a' is local to this function
                          // and cannot be directly accessed from outside
                          // this anonymous function's scope

    return {
        get_a : function() { return a; },   // These functions are closures:
        set_a : function(val) { a = val; }  // they keep reference to
                                            // something ('a') that was on scope
                                            // where they were defined
    };
})();

Now you can use the same method to create and add the listeners as Luke proposed, but you can rest assured that there's no possible way to read from or write to a going unnoticed!

Adding encapsulated fields programmatically

Still on Luke's track, I propose now a simple way to add encapsulated fields and the respective getters/setters to objects by the means of a simple function call.

Note that this will only work properly with value types. For this to work with reference types, some kind of deep copy would have to be implemented (see this one, for instance).

function addProperty(obj, name, initial) {
    var field = initial;
    obj["get_" + name] = function() { return field; }
    obj["set_" + name] = function(val) { field = val; }
}

This works the same as before: we create a local variable on a function, and then we create a closure.

How to use it? Simple:

var myobj = {};
addProperty(myobj, "total", 0);
window.alert(myobj.get_total() == 0);
myobj.set_total(10);
window.alert(myobj.get_total() == 10);
share|improve this answer
1  
+1 for encapsulation. That was my first thought, but I wanted the ability to add the create_gets_sets method eventually, and since it is indiscriminate, hiding the values isn't cool :) we can take it a step further and write some things to hide the values, but I think the code i've posted is confusing enough for most people... maybe if there's call for it... – Luke Schafer Nov 19 '09 at 0:36

Sorry to bring up and old threat, but here is a little manual for them who (like me!) don't see how Eli Grey's example works:

var test = new Object();
test.watch("elem", function(prop,oldval,newval){
    //Your code
    return newval;
});

Hope this can help someone

share|improve this answer

If you're using jQuery {UI} (which everyone should be using :-) ), you can use .change() with a hidden <input/> element.

share|improve this answer
2  
I don't quite understand. How can you attach a variable to a hidden <input/> element? – Peter Lee Dec 5 '12 at 23:44

For those tuning in a couple years later:

A solution for most browsers (and IE6+) is available that uses the onpropertychange event and the newer spec defineProperty. The slight catch is that you'll need to make your variable a dom object.

Full details:

http://johndyer.name/native-browser-get-set-properties-in-javascript/

share|improve this answer

Not directly: you need a pair getter/setter with an "addListener/removeListener" interface of some sort... or an NPAPI plugin (but that's another story altogether).

share|improve this answer

I guess you could use some getter and setter methods for the variable and fire the event there.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.