Guest User

Untitled

a guest
May 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. jQuery.preloadImages = function() {
  2. var a = (typeof arguments[0] == 'object')? arguments[0] : arguments;
  3. for(var i = a.length -1; i > 0; i--) {
  4. imgload = new image();
  5. $(imgload).src = a[i];
  6. }
  7. }
  8.  
  9. $(window).bind('load', function() {
  10. $.preloadImages(
  11. "login-button2.png",
  12. "register-button2.png",
  13. "search2.png",
  14. "rss2.png"
  15. );
  16.  
  17. });
Add Comment
Please, Sign In to add comment