In order to add a very long list of option elements to a select list I add them on-click. I want to prevent that the list is added multiple times. How can I do that?

$("#skiresort").click(function(){
$("#skiresort").load("/v3/inc/review.php");
});
link|improve this question

51% accept rate
feedback

2 Answers

up vote 4 down vote accepted

There is a method for executing an event handler only once: .one():

$("#skiresort").one('click', function(){
    $("#skiresort").load("/v3/inc/review.php");
});
link|improve this answer
feedback

Felix answer is perfect for jQuery, I'm adding this just to show a generic JavaScript technique for it:

function runOnce(f) {
   var called = false;
   return function() {
     if (!called) {
       called = true;
       return f.apply(this, arguments);
     }
   };
 }

Now you can use it like this:

var myNewFunction = runOnce(myFunction); // this does not run "myFunction", but returns a new one that will only run once.

myNewFunction(1, 2, 3); // runs the "myFunction" and returns whatever it returns
myNewFunction(1, 2, 3); // doesn't do anything, just returns undefined
link|improve this answer
+1 good idea... – Felix Kling Jan 9 '11 at 11:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.