Guest User

Untitled

a guest
Jul 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. var callFunctions = function()
  2. {
  3. showWelcome;
  4. showRecentImg;
  5. showRecentNotes;
  6. }
  7.  
  8. $(document).ready(function(){
  9. $('#mainDiv').fadeIn(1000, callFunctions);
  10. });
  11.  
  12. var showWelcome = function() { $('#welcomeDiv').fadeIn(1000); };
  13. var showRecentImg = function() { $('#recentImages').fadeIn(1000); };
  14. var showRecentNotes = function() { $('#recentNotes').fadeIn(1000); };
Add Comment
Please, Sign In to add comment