Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
jquery load 이벤트 핸들러가 실행되지 않는 이유 본문
에러도 없이 jquery의 load 이벤트 핸들러가 실행되지 않았다.
http://api.jquery.com/load-event/
<script type="text/javascript">
$(document).ready(function() {
$("#id3image").load(function() {
var height = $("#id-main-graph-3-left").height();
$("#id-main-graph-3-right").height(height);
});
});
</script>
해답은 간단했다.
$("#id3image").load(function() { ... }); 부분을
$(document).ready(function() { ... }); 안에 넣어야 한다는 것.
문서가 로딩되기 전이라 $("#id3image") 부분을 jquery 가 인지하지 못한 상태에서 load 이벤트 핸들러 함수가 등록되어서, 실행이 안된 것이었다.
[참고] http://stackoverflow.com/questions/2990518/jquery-load-not-working-in-chrome
'WEB (HTML, CSS)' 카테고리의 다른 글
Holder.js - client side image placeholders (0) | 2014.09.17 |
---|---|
Web Page Test (0) | 2014.09.11 |
favicon 만들어주는 사이트 - Favicon Generator (0) | 2014.09.05 |
웹리소스를 GZIP으로 압축 전송 (0) | 2014.09.03 |
float 에서 display: inline-block 의 용도 (0) | 2014.09.03 |
Comments