Two syntaxes can be used for this: $( document ).ready(function() { console.log( "ready!" ); }); Or the shorthand version: $(function() { console.log( "ready!" ); });