/* * To change this template, choose Tools | Templates * and open the template in the editor. */ $(document).ready( function(){ $(".debug_icon").toggle( function(){ $(this).find("+ .debug").css("visibility","visible"); }, function(){ $(this).find("+ .debug").css("visibility","hidden"); } ); } );