お問い合わせ
問題のあるレビューの報告は、以下のフォームよりご連絡ください。
いただいたご意見・お問い合わせには、必ず目を通しておりますが、回答や返信をお約束するものではありません。あらかじめ、ご了承ください。
※は入力必須項目になります。
// NARROWSEARCH TL
//jQuery('.typeFes').not('#type00').addClass('hide');
jQuery(document).on('change','#typeLive',function(){
jQuery('.typeFes').addClass('hide');
jQuery('#' + jQuery('#typeLive option:selected').attr('class')).removeClass('hide');
jQuery('.typeFes').not('#' + jQuery('#typeLive option:selected').attr('class')).val('');
});
jQuery(document).on('click','.memoBox > dl dt a.btnMemo',function(){
jQuery(this).parents('dl').hide();
jQuery('form'+jQuery(this).attr('href')).show();
return false;
});
jQuery(document).on('click','dt a.btnCncl',function(){
jQuery('form'+jQuery(this).attr('href')).hide();
jQuery('form'+jQuery(this).attr('href')).siblings('dl').show();
return false;
});