Is there any difference between using:
$(document).ready(function(){
vs.
$(function(){
Does one of these work better than the other in some way, or is the first just a shorthand version of the first?
|
Is there any difference between using:
vs.
Does one of these work better than the other in some way, or is the first just a shorthand version of the first? |
|||||||||
|
|
The latter is the short version of ready handler. The:
is short version of this:
Both do the same and one task. jQuery is doing to a good deal with its slogan: 'Code less, do more' |
|||||
|
|
From the docs:
HTH |
|||
|
|