jquery 브라우저 리사이즈 완료 이벤트 jquery 브라우저 리사이즈 완료 이벤트 //화면 조절 후 이벤트 완료될때 처리 $(window).resize(function() { clearTimeout(window.resizedFinished); window.resizedFinished = setTimeout(function(){ console.log("화면 리사이즈 후 이벤트 완료 처리") }, 250); }); Javascript/Jquery 2021.02.23
특정 문자열만 입력하느 jquery plugin [1] 특정 문자열만 입력되는 jquery plugin $.fn.formatKey = function(mode){ $(this).css({"ime-mode":"disabled"}); this.each(function(){ $(this).keyup(function(e){ if (window.event) { key = window.event.keyCode; } else if (e) { key = e.which; } else { return true; } keychar = String.fromCharCode(key); if (key == null) return true; switch(mode){ case 'alpha-upper': return /[^A-Z]+$/.test(keychar)? false : tru.. Javascript/Jquery 2019.02.25