Which of the following is an equivalent replacement of $(document).ready(f)?
A
jQuery(f)
B
$(f)
C
#(f)
D
read(f)
Correct Answer: $(f)
The equivalent replacement of $(document).ready(f) is $(f). Writing $(document) performs the function of selecting the whole document which is the same as writing $() only.