Front End Programmer Question:
Explain what event bubbling is?
Answer:
Event bubbling causes all events in the child nodes to be automatically passed to its parent nodes. The benefit of this method is speed because the code only needs to traverse the DOM tree once.
Previous Question | Next Question |
Tell me what is stringify? | Explain what is AJAX? Write an AJAX call? |