셀렉트 박스 초기화 시키는 방법
$(select).prop('selectedIndex',0);
'프로그래밍 > jQuery' 카테고리의 다른 글
[jQuery] 이미지 로딩 완료 되었을 때 엘리먼트에 ADD 하기 (0) | 2014.12.17 |
---|
셀렉트 박스 초기화 시키는 방법
$(select).prop('selectedIndex',0);
[jQuery] 이미지 로딩 완료 되었을 때 엘리먼트에 ADD 하기 (0) | 2014.12.17 |
---|
var img = $("").attr('src', 'http://somedomain.com/image.jpg') .load(function() { if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) { alert('broken image!'); } else { $("#something").append(img); } });
셀렉트 박스 초기화 시키기 (0) | 2016.10.19 |
---|