Guest User

Untitled

a guest
Apr 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <%= image_tag("header/home_but.gif", :mouseover => "header/home_over.gif") %>
  2.  
  3. Prototype.preloadImages = function(){
  4. for(var i=0, images=[]; src=arguments[i]; i++){
  5. images.push(new Image());
  6. images.last().src = src;
  7. }
  8. };
  9.  
  10. Event.observe(window, 'load', function(){
  11. Prototype.preloadImages('header/home_over.gif','another/image/to/preload.gif');
  12. });
Add Comment
Please, Sign In to add comment