var inputFocus = function() { var inputTxt = $("input[class*='_input']"); inputTxt.each(function(){ var $this = $(this), default_value = $this.val(); $this.on('focus', function() { if ($this.val() == default_value) { $this.val(""); } $this.removeClass('filled'); $this.addClass('on'); }); $this.on('blur', function() { if($this.val().length == 0) { $this.val(default_value).addClass('filled'); $this.removeClass('on'); } }); }); };
답글 남기기