Watermark
/* watermark on input text */
if(typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
}
}
var $input_list = $('.ipt-text');
$.each($input_list, function(idx, item){
var $input_text = $input_list.eq(idx);
var watermark = $input_text.val();
$input_text.on('focus blur', function(e){
var $this = $(this),
focusValue = $this.val().trim();
if(e.type == 'focus') {
if(focusValue == watermark) {
$this.val('');
}
} else {
if(focusValue.length == 0) {
$this.val(watermark);
}
}
})
})
Jaehee's WebClub
'Code Lab' 카테고리의 다른 글
custom input[type="file"] - 폼 커스텀 파일업로드 #1 (0) | 2016.11.01 |
---|---|
Dropdown Menu BootStrap (2) | 2016.09.29 |
Browser & OS Check 및 IE 멀티클래스 (0) | 2016.09.29 |
IE9이하 custom placeholder 처리하기 (0) | 2016.09.29 |
input type X 버튼 크로스브라우징 - input clear button (0) | 2016.09.29 |