Line 98: | Line 98: | ||
$( ".FIM" ).toggle(); | $( ".FIM" ).toggle(); | ||
}); | }); | ||
+ | |||
+ | $(function() { | ||
+ | $( "#adaptors_res" ).click(function() { | ||
+ | $( "#processors_box" ).hide(); | ||
+ | $( "#detectors_box" ).hide(); | ||
+ | $( "#reporters_box" ).hide(); | ||
+ | $( "#adaptors_box" ).show(); | ||
+ | $( "#framework_box" ).hide(); | ||
+ | $( "#cellfree_box" ).hide(); | ||
+ | $( "#reset" ).show(); | ||
+ | }); | ||
+ | |||
+ | $( "#detectors_res" ).click(function() { | ||
+ | $( "#detectors_box" ).show(); | ||
+ | $( "#processors_box" ).hide(); | ||
+ | $( "#adaptors_box" ).hide(); | ||
+ | $( "#reporters_box" ).hide(); | ||
+ | $( "#framework_box" ).hide(); | ||
+ | $( "#cellfree_box" ).hide(); | ||
+ | $( "#reset" ).show(); | ||
+ | }); | ||
+ | |||
+ | $( "#processors_res" ).click(function() { | ||
+ | $( "#processors_box" ).show(); | ||
+ | $( "#detectors_box" ).hide(); | ||
+ | $( "#adaptors_box" ).hide(); | ||
+ | $( "#reporters_box" ).hide(); | ||
+ | $( "#framework_box" ).hide(); | ||
+ | $( "#cellfree_box" ).hide(); | ||
+ | $( "#reset" ).show(); | ||
+ | }); | ||
+ | |||
+ | $( "#reporters_res" ).click(function() { | ||
+ | $( "#reporters_box" ).show(); | ||
+ | $( "#processors_box" ).hide(); | ||
+ | $( "#detectors_box" ).hide(); | ||
+ | $( "#adaptors_box" ).hide(); | ||
+ | $( "#framework_box" ).hide(); | ||
+ | $( "#cellfree_box" ).hide(); | ||
+ | $( "#reset" ).show(); | ||
+ | }); | ||
+ | |||
+ | $( "#framework_res" ).click(function() { | ||
+ | $( "#framework_box" ).show(); | ||
+ | $( "#reporters_box" ).hide(); | ||
+ | $( "#processors_box" ).hide(); | ||
+ | $( "#detectors_box" ).hide(); | ||
+ | $( "#adaptors_box" ).hide(); | ||
+ | $( "#cellfree_box" ).hide(); | ||
+ | $( "#reset" ).show(); | ||
+ | }); | ||
+ | |||
+ | $( "#cellfree_res" ).click(function() { | ||
+ | $( "#cellfree_box" ).show(); | ||
+ | $( "#framework_box" ).hide(); | ||
+ | $( "#reporters_box" ).hide(); | ||
+ | $( "#processors_box" ).hide(); | ||
+ | $( "#detectors_box" ).hide(); | ||
+ | $( "#adaptors_box" ).hide(); | ||
+ | $( "#reset" ).show(); | ||
+ | }); | ||
+ | |||
+ | $( "#SPL_title" ).click(function() { | ||
+ | $( ".SPL" ).toggle(); | ||
+ | }); | ||
+ | |||
+ | $( "#ARS_title" ).click(function() { | ||
+ | $( ".ARS" ).toggle(); | ||
+ | }); | ||
+ | |||
+ | $( "#PSI_title" ).click(function() { | ||
+ | $( ".PSI" ).toggle(); | ||
+ | }); | ||
+ | |||
+ | $( "#FIM_title" ).click(function() { | ||
+ | $( ".FIM" ).toggle(); | ||
+ | }); | ||
+ | |||
+ | $( "#SIG_title" ).click(function() { | ||
+ | $( ".SIG" ).toggle(); | ||
+ | }); | ||
+ | |||
+ | $( "#SOX_title" ).click(function() { | ||
+ | $( ".SOX" ).toggle(); | ||
+ | }); | ||
+ | |||
+ | $( "#GFP_title" ).click(function() { | ||
+ | $( ".GFP" ).toggle(); | ||
+ | }); | ||
+ | |||
+ | $( "#CHR_title" ).click(function() { | ||
+ | $( ".CHR" ).toggle(); | ||
+ | }); | ||
+ | |||
}); | }); | ||
Revision as of 09:07, 23 October 2017