13 lines
320 B
JavaScript
13 lines
320 B
JavaScript
|
|
jQuery(document).ready(function(){
|
||
|
|
|
||
|
|
jQuery('.nhp-opts-checkbox-hide-below').each(function(){
|
||
|
|
if(!jQuery(this).is(':checked')){
|
||
|
|
jQuery(this).closest('tr').next('tr').hide();
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
jQuery('.nhp-opts-checkbox-hide-below').click(function(){
|
||
|
|
jQuery(this).closest('tr').next('tr').fadeToggle('slow');
|
||
|
|
});
|
||
|
|
|
||
|
|
});
|