Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. //this will fail
  2. $(document).ready(function () {
  3. myFunction(alert('doing something!'));
  4. //other stuff
  5. }
  6.  
  7. //this will work
  8. myFunction(alert('doing something!'));
  9. $(document).ready(function () {
  10.  
  11. //other stuff
  12. }
  13.  
  14. myFunction()
  15.  
  16. function myFunction(alert('doing something!'))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement