JS

자바스크립트에서 타이머 점점 빠르게 구현하기

자바스크립트에서 타이머 점점 빠르게 구현하기 $element.find('a[data-action^="increment"], a[data-action^="decrement"]') .each(function() { var timer = 0; var cb = function(element, started) { var stopped = new Date().getTime(); var run = function() { $(element).trigger('click'); …

자바스크립트에서 타이머 점점 빠르게 구현하기 Read More »

자바스크립트 프린트 윈도우 예제

자바스크립트 프린트 윈도우 예제 var printWindow = window.open('', '프린트 윈도우 예제', 'height=900,width=800'); printWindow.addEventListener("load", function() { alert("loaded"); }, false); printWindow.document.write('<html><head><title>프린트 윈도우 예제</title>'); printWindow.document.write( [ '<link rel="stylesheet" type="text/css" media="all" href="print.css" />', ].join('') …

자바스크립트 프린트 윈도우 예제 Read More »

Scroll to Top