Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // IIFE keeps all code out of global scope
  2. (function($, window, document) {
  3. // The $ is now locally scoped
  4. $(function() {
  5. // The DOM is ready!
  6. // equiv of $(document).ready(function () {
  7. });
  8. }(window.jQuery, window, document));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement