Rhita wants to replace jQuery's $(document).ready(fun) with an equivalent shorter method.
Answer options
A
$(fun)
B
#(fun)
C
There is no equivalent function for the given code
D
jQury(fun)
Correct answer: $(fun)
Explanation
$(fun) is the shorthand for $(document).ready(fun) in jQuery. It executes the provided function once the DOM is fully loaded and ready for manipulation.