/* $('.select_box').click(function () { if ($(this).parent().hasClass('on')) { $(this).parent().removeClass('on'); $(this).parent().find('.option_wrap').hide(); }else { $('.locDep').removeClass('on'); $('.option_wrap').hide(); $(this).parent().addClass('on'); $(this).parent().find('.option_wrap').show(); } }); $('.select_op a').click(function () { var selTxt = $(this).html(); $(this).parent().parent().parent().find('.select_box').html(selTxt); $(this).parent().parent().parent().parent().find('.option_wrap').hide(); $('.locDep').removeClass('on'); return false; }); var selFlag = false; var selTxt; $('.locDep').each(function () { $(this).find('.select_op li').each(function () { if ($(this).hasClass('on')) { selTxt = $(this).find('a').html(); selFlag = true; } }); if (selFlag == true) { $(this).find('.select_box').html(selTxt); } }); */