'프로그래밍/jQuery'에 해당되는 글 2건

  1. 2016.10.19 셀렉트 박스 초기화 시키기
  2. 2014.12.17 [jQuery] 이미지 로딩 완료 되었을 때 엘리먼트에 ADD 하기

셀렉트 박스 초기화 시키는 방법


$(select).prop('selectedIndex',0);
Posted by august5pm
,
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);
        }
    });

'프로그래밍 > jQuery' 카테고리의 다른 글

셀렉트 박스 초기화 시키기  (0) 2016.10.19
Posted by august5pm
,