1 $(document).ready(function(){ 2 //do somethings 3 });
1 $(function(){ 2 //do somethings 3 });
1 jQuery(function($){ 2 //do somethings 3 });