$(function(){ "use strict"; $('select').on('change',function(){ $(this).css('color',"#333"); $(this).css('letter-spacing',"0"); }) $('select#select_pref').on('change',function(){ $('select#select_city').prop("disabled", false); }) $(".search_condition .btn_condition").click(function(){ $(this).toggleClass("active").next().slideToggle(); }); $('[name="group2"]:radio').change( function() { if($('[id=group2_1]').prop('checked')){ $('.check_group3').fadeIn(); $('.check_group4').hide(); } else if ($('[id=group2_2]').prop('checked')) { $('.check_group3').hide(); $('.check_group4').fadeIn(); } }); });