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

I declare a variable which gets it's value through another event out of a select-box. Since there are different events which change the variable (lets name it z), I want to get informed when the variable gets changed.

So my question is: What is the best way to get informed when a variable gets changed? z.change(function(){}); throws an error.

Are there ways to do this without a hidden input-field or other helpers like that?

share|improve this question

2 Answers

up vote 2 down vote accepted

It's not really possible, but some browsers support getters and setters, and with them you could implement something that called an external function when the value is chanced. If you want this to work in all browsers, then you could go the old fashioned way of doing this:

var Item = function (val) {
    this._val = val;
}

Item.Prototype.setValue = function (val) { 
    this._val = val;
    // call external function here!
}
Item.Prototype.getValue = function () {
    return this._val;
}

And then always remember to only access the property through these functions.

share|improve this answer
Thank you, looks very good, but this is the Prototype-way of doing it, right? Because I'm using jQuery. I will try a rewrite. – Tim Sep 29 '10 at 8:59
Yeah, this was just to show some code - modify it to whatever framework you use :-) – AHM Sep 29 '10 at 9:01
1  
@Tim - No, this is not Prototype framework, it's just Vanilla Javascript, no framework detected. Here's a link. – Reigel Sep 29 '10 at 9:22
@Riegel - yeah, that's right. It's all because of the Prototype frameworks irritating name - my example was prototypal inheritance, the kind javascript provides by itself, without a framework. – AHM Sep 29 '10 at 9:26
@AHM, @Tim - here's one good explanation. – Reigel Sep 29 '10 at 9:27
show 1 more comment

You should be interested in http://plugins.jquery.com/project/watch which is not as complete as SpiderMonkey's method, but actually works.

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.