html 썸네일형 리스트형 IntersectionObserver We can handle the element impressions using IntersectionObserver API. But this API is not supported some browsers like IE. But we can use this API in more browsers using with IntersectionObserver polifill. But this is not covered all browser. This polifill supports below.. Chrome ✔ Firefox ✔ Safari 6+ Edge ✔ Internet Explorer 7+ Opera ✔ Android 4.4+ You can see the manual in Intersection Observe.. 더보기 [HTML] Way to remove the arrow button at input tag that number type When you using the input tag with number type, you can see the up/down arrows on the right side of input tag..Like this ..If you don't like this arrows, you would add the styles in css like this ...number-input::-webkit-outer-spin-button,.number-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0;}You can find the manuals here.. https://developer.mozilla.org/en-US/docs/Web/CSS.. 더보기 [JavaScript] Post 날리기 꼼수긴 하지만 아래와같이 해주면 post를 날려줄 수 있음. doPost: function(url, params){ var form = $("").attr("action", url); $.each(params, function(name, value){ $("").attr("name", name).attr("value", value).appendTo(form); }); form.appendTo("body"); form.submit(); }, 더보기 이전 1 2 3 다음