자주묻는질문
보안 및 법적준수사항
고객들을 위한 입력 힌트(Placeholder)를 사용하려면 어떻게 해야 하나요?
nction() {//IE 8 버전에는 hasPlaceholderSupport() 값이 false를 리턴if (hasPlaceholderSupport() === true) {return this;}//hasPlaceholderSupport() 값이 false 일 경우 아래 코드를 실행... 일때 value 가 true 이면 숨김, false 이면 보여짐$('body').delegate('.ePlaceholder :input', 'focusout', function(){if (this.value) {$(this).prev('span').hide();} el...se {$(this).prev('span').show();}});//input에 placeholder가 지원이 되면 true를 안되면 false를 리턴값으로 던져줌function hasPlaceholderSupport() {if ('placeholder' in do