Question:Which of the following is true for the code below? $('#a1').one('click', {times: 3}, function1);
A function1 will be executed once regardless of the number of times a1 is clicked.
B function1 will be executed at most 3 times if a1 is clicked more than twice.
C There is at most one instance of function1 to be executed at a time.
D There are at most three instances of function1 to be executed at a time.
+ AnswerA
+ Report