워터마크 기능 구현
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 = $th..