IE에서는 잘 작동하던 코드가 chrome에서 안될 때
before
- location.href("where");
- location.href("where");
after
- location.href = "where";
- location.href = "where";
'Course > javaScript' 카테고리의 다른 글
팝업 후 부모창 닫기 (0) | 2015.06.22 |
---|---|
javascript checkbox checked 처리 ie, 크롬 다되는거 (0) | 2015.06.10 |
textarea 부모 객체 사이즈에 맞게 리사이즈 (jquery) (0) | 2014.10.08 |
Enter키 폼 전송 막기 (0) | 2013.12.30 |
jquery 간단한 정리 (0) | 2013.12.24 |