Question:Consider the following code snippet:
$(document).ready(function1); $(document).ready(function2); $(document).ready(function3);Which of the following functions are executed when DOM is ready?
A function1
B function2
C function3
D function1, function2, and function3
E No function is executed.
+ AnswerD
+ Report