Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to do a background color that fades from a color to white (or any color) in javascript, but my code doesn't work. The error in Firebug says this.countDown.bind is not a function. But I've defined countDown as a function as you can see in the code below. Please can someone show me where I'm doing wrong. Here's my code:

var fadingObject = {
    yellowColor: function(val){
        var r = 'ff', 
        g = 'ff', 
        b = val.toString(16),
        newval = '#' + r + g + b;

        return newval;
    },
    fade: function(id, start, finish){
        this.start = start;
        this.count = this.start;
        this.finish = finish;
        this.id = id;

        this.countDown = function(){
            this.count += 30;

            if(this.count >= this.finish){
                document.getElementById(this.id).style.background = 'transparent';
                this.countDown = null;
                return;
            }

            document.getElementById(this.id).style.backgroundColor = this.yellowColor(this.count);

            setTimeout(this.countDown.bind(this), 100);
        }
    }
};

HTML (if needed):

<div id="one">
  <p>Take control and make writing fun and fast again. Snippets automate...</p>
</div>
share|improve this question

1 Answer

up vote 0 down vote accepted

this.countDown is a javascript function. Therefore, you don't have any child objects (namely one called bind) to drill down to. Am I missing something?

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.