Advertisement
saasbook

document_ready.js

Aug 15th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // canonicalized:
  2. jQuery(document).ready(function() { alert('Ready!'); });
  3. // using $ alias:
  4. $(document).ready(function() { alert('Ready!'); });
  5. // using shortcut for document ready function:
  6. $(function() { alert('Ready!'); });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement