Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Objekt.prototype.loadImg = function(pImg){
    if(pImg!=null){
        this.imgLoaded=false;
        this.img = null;
        this.img = new Image();         
        this.img.src = pImg;     
        this.img.onload = function(){
            alert("!");
            this.autoSize();                
            this.imgLoaded=true;
        }; 

    }
}

My Problem is that "this" is invalid in the "onload = function()"-function!

alert("!"); is executed, but not the Objekt.prototype.autoSize()-function for example!

What do I have to do to call my "class-intern"-functions (e.g. autoSize) ???

share|improve this question

1 Answer

up vote 1 down vote accepted

That's because the onload function isn't called with your objekt as receiver. So this, inside this callback, isn't the desired object.

You can do this to transmit this to the onload callback :

Objekt.prototype.loadImg = function(pImg){
    if(pImg!=null){
        this.imgLoaded=false;
        this.img = null;
        this.img = new Image();         
        this.img.src = pImg;     
        var _this = this;
        this.img.onload = function(){
            alert("!");
            _this.autoSize();                
            _this.imgLoaded=true;
        }; 
    }
}
share|improve this answer
Perfect! Thank you very much! – user1511417 Jul 9 '12 at 9:04

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.