Guest User

Untitled

a guest
Feb 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <script>
  2. alert("hello"); // 1. alert hello
  3. $(function(){alert("hello");}); // 2. Also alert hello
  4. (function($){alert("hello");})(jQuery); // 3. It also alert hello
  5. </script>
Add Comment
Please, Sign In to add comment