Two names $and jQueryare synonyms. jQueryis more explicit; $may be overridden if you use a different infrastructure.
If you pass the function as the first argument when calling the function jQuery(or, obviously, on $), it is executed exactly as if it were a call jQuery(document).ready. So yes, it’s exactly the same.
, ( , , $):
$(document).ready(function() {});
jQuery(document).ready(function() {});
$(function() {});
jQuery(function() {});
, .
$(document).ready (# 1): , , , DOM . (№ 4) , , jQuery, -, .