Advertisement
Guest User

Untitled

a guest
May 28th, 2017
58
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="+URL+"admin/ControlPanel/images/new/module_actions.gif]").attr("src", URL+"admin/ControlPanel/images/new/module_actions_active.jpg");
  11.                 $("TD.toggle_module_TD").css("background","#000");
  12.             }
  13.         ).mouseleave (
  14.             function ()
  15.             {
  16.                 $("IMG[src="+URL+"admin/ControlPanel/images/new/module_actions_active.jpg]").attr("src", URL+"admin/ControlPanel/images/new/module_actions.gif");
  17.                 $("TD.toggle_module_TD").css("background","none"); 
  18.             }
  19.         );     
  20.     }
  21. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement