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");
});
|
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?
| |||
|
feedback
|
|
There is a method for executing an event handler only once:
| |||
|
feedback
|
|
Felix answer is perfect for jQuery, I'm adding this just to show a generic JavaScript technique for it:
Now you can use it like this:
| |||
|
feedback
|