Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2.   $(function() {
  3.     $('img#9backlogo').hover(
  4.       function(){ $('img#9frontlogo').attr('src', 'newURL'); },
  5.       function(){ $('img#9frontlogo').attr('src', 'oldURL'); }
  6.     );
  7.     $('img#10backlogo').hover(
  8.       function(){ $('img#10frontlogo').attr('src', 'newURL'); },
  9.       function(){ $('img#10frontlogo').attr('src', 'oldURL'); }
  10.     );
  11.   });
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement