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 can't find out how to delay an event handler for a widget. I bind the event like this:

enable: function () {
    this.options.isEnabled = true;
    this.element.bind("keyup", $.proxy(this, "_populateList"));
},

I want to call "_populateList" with a delay. but my attempts with setTimeout are not working.

The "_populateList":

_populateList: function (event) {
    var that = this;
    // do my stuffs
}

Thanks

share|improve this question
Where's your setTimeout use attempt? – Kon Jun 26 '11 at 12:41

1 Answer

up vote 0 down vote accepted

Try this:

enable: function () {
    this.options.isEnabled = true;
    var that = this;
    this.element.bind("keyup", function(event){
       $(this)
          .delay(1000) // delayed time in milliseconds
          .queue(function(next){
             that._populateList(event);
             next();
          });
    });
},
share|improve this answer
if I set 1000 in delay, nothing happens after 1 second – user706058 Jun 26 '11 at 12:53
@user706058: Updated the code in my answer. Try again, please. :) – Shef Jun 26 '11 at 12:55
@Shef same, nothing happens but an error occurs: "_populateList is not defined" – user706058 Jun 26 '11 at 12:57
@user706058: Try to reference _populateList(event); with the name of the object holder in front, like objectHolder._populateList(event); – Shef Jun 26 '11 at 13:24
@user706058: Try again my updated code. – Shef Jun 26 '11 at 13:28
show 4 more comments

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.