반응형
반응형

Mobify.js: Adapt your site for any device

 

Mobify.js makes it quick and easy to create responsive versions of your website. It provides responsive images, JavaScript and CSS optimization, and Adaptive Templating, among other features.

mobify

Mobify.js is an open source library for improving responsive sites by providing responsive images, JS/CSS optimization, Adaptive Templating and more. 
반응형
반응형

Eloquent JavaScript: A modern programming introduction

Eloquent JavaScript, now in its second edition, is a free ebook that offers up a modern introduction to JavaScript programming. It covers everything from program structure to regular expressions to Node.js, and everything in between.

eloquent javascript

반응형
반응형

jQuery 에서 해당 요소(element)의 존재여부를 확인할 때


length로 길이를 확인해서 처리하면 된다.


//This will not work
if ( $("#myid") ) {
//do something
}


아래와 같이 해야 확인이 가능하다.



if ( $("#myid").length > 0 ) {
//do something
}

반응형
반응형

Deckard: Web Animations API slide deck

 

Deckard is a library for creating slide decks using the Web Animations API. There are no dependencies, except for the Web Animations Polyfill if you want it to work in browsers that don’t yet support the API.

deckard

Demos

 

 

 

반응형
반응형

 

HTML Minifier: Minify your HTML files

HTML 소스 줄여줘요~

HTML Minifier is a simple web app that minifies your HTML code according to options you select. You can opt to remove comments, collapse whitespace, remove optional tags, and more.

minifier

반응형
반응형

Can I use?: Up-to-date browser support reference



사용할 수 있나? 최신 브라우저 지원 참조~


Can I Use? is a complete table of up-to-date browser support for various modern font-end web technologies. Search by keyword to quickly find what you’re looking for, select specific browsers to compare, or even download the raw support data.

can i use


반응형

+ Recent posts