$(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="group1"]:radio').change( function() { if($('[id=group1_2]').prop('checked')){ $('.check_group3').fadeIn(); } else if ($('[id=group1_1]').prop('checked')) { $('.check_group3').fadeOut(); } }); });