Advertisement
Guest User

Untitled

a guest
May 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(
  2.     function ()
  3.     {
  4.  
  5.         var URL = window.location.href
  6.        
  7.         $('.module_actions,.toggle_module_TD').mouseenter (
  8.             function ()
  9.             {
  10.                 $("IMG[src=/admin/ControlPanel/images/new/module_actions.gif]").attr("src", "/admin/ControlPanel/images/new/module_actions_active.jpg");
  11.             }
  12.         ).mouseleave (
  13.             function ()
  14.             {
  15.                 $("IMG[src=/admin/ControlPanel/images/new/module_actions_active.jpg]").attr("src", "/admin/ControlPanel/images/new/module_actions.gif");   
  16.             }
  17.         );     
  18.     }
  19. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement