lang/js 73

javascript Lightweight selector library

참고DLite – A Lightweight JavaScript Library For Those Who Want Less Features, And More Control dLite - Your little JavaScript friend 소개 elm – find element with a certain id 특정 ID를 가진 요소를 찾는다. var container = elm(“container”); elmsByClass – find elements with a certain class name 특정 클래스 이름으로 엘리먼트를 찾는다. var externalLinks = elmsByClass(“external”, a); DOMReady – run functions as soon as the DOM is l..

lang/js 2013.04.17

10 Javascript Performance Boosting Tips from Nicholas Zakas

원문 : 10 Javascript Performance Boosting Tips from Nicholas Zakas Define local variables 지역변수를 사용하라 Don’t use the with() statement with() 문법을 사용하지 마라 Use closures sparingly closures 를 절약하라 Object properties and array items are slower than variables 개체 속성과 배열 항목은 변수보다 느리다. Don’t dig too deep into arrays 배열은 깊게 파지마라 Avoid for-in loops (and function based iteration) for-in 루프는 피하라. ( function 기반 반복은..

lang/js 2013.03.12

javascript profile

이래 저래 jQuery plugin 이나 jUnit 등을 설치할까 하다가 그냥 만들어 버렸다. 1시간이다. 이런 허접 스런... /** * @authoruncaose@gmail.com */ profile = { lists : [ { name: '### start', time:(new Date().getTime()), startDelay: 0, delay : 0, from : { name : null, delay: -1 } } ], getTime : function(){ return (new Date().getTime()); }, set : function(name, from){ var name = name, from = from||null, fromDelay = -1, time = this.getTime..

lang/js 2012.05.25
반응형