InterviewSolution
Saved Bookmarks
| 1. |
How does jquery .on() work? |
Answer»
The following removes all delegated click handlers from all paragraphs: $('p').off('click', '**');The following removes just one previously bound handler by passing it as the third argument: $('body').off('click', 'p', FOO); // ... Foo will no longer be called. |
|