$(document).ready(function () { // 내정보 메뉴 제어 $('#loginWrap .btn_close, .side_bg').click(function () { side_close("#loginWrap"); }); }); /** * SNS 간편 로그인 * @param type * @param proc */ function social_login(type, proc) { redirect_uri = $('input[name=redirect_uri]').val(); if (redirect_uri === '') { redirect_uri = location.href; } switch (type) { case 'google': case 'naver': case 'kakao': window.open('/social/'+type+'/'+proc+'/?redirect_uri='+redirect_uri, type, 'width=600, height=500'); break; } } function changeInput() { const user_name = $('#username'); const user_pwd = $('#password'); if (user_name.val().length >= 5 && user_pwd.val().length >= 8 && user_name.val().includes('@')) { $('.btn_login').addClass('on'); } else { $('.btn_login').removeClass('on'); } }