|
Posted by Marek Kilimajer on 10/09/91 11:14
Eli wrote:
> Hi,
>
> I know this is not the forum, but I googled and couldn't find it, so
> please try to help me with this.
>
> /*********/
> function MyCls(name)
> {
> this.name=name;
> }
> function SayHi()
> {
> alert('Hi, '+this.name+'!');
> }
> var obj=new MyCls('PHP');
> obj.name='JavaScript'; //this will call SayHi() function
> /*********/
>
> I have a class in JS with a property variable in it. How can I execute a
> function when the property value is changed?
>
> Sorry it's off-topic..
> -thanks, Eli
>
Look at Object's watch() method
Navigation:
[Reply to this message]
|