jQuery 에서 해당 요소(element)의 존재여부를 확인할 때
length로 길이를 확인해서 처리하면 된다.
//This will not work
if ( $("#myid") ) {
//do something
}
아래와 같이 해야 확인이 가능하다.
if ( $("#myid").length > 0 ) {
//do something
}
'프로그래밍 > Script' 카테고리의 다른 글
[jQuery] S Gallery: Responsive jQuery gallery plugin (0) | 2014.09.03 |
---|---|
[jQuery] Circliful: Circular loaders with jQuery (0) | 2014.08.11 |
[jQuery] jQuery.vibrate.js: Trigger mobile device vibrations (0) | 2014.07.21 |
[jQuery] Touche.js: Re-map click events to touch events (0) | 2014.07.16 |
[jQuery] jQuery Cheat Sheet: A quick API reference (0) | 2014.07.07 |