본문 바로가기
728x90

Programming68

"Uncaught TypeError: a.indexOf is not a function" error when opening new foundation project jQuery 로드할때 이런 형식으로 썼는데 1. 오류 나는 부분 $(window).load(function(){ ........ }); "Uncaught TypeError: a.indexOf is not a function" error when opening new foundation project 이런 에러가 남.... stackoverflow에서 찾아보니 이런 답변이 달렸고 나 또한 이걸로 해결함. This error might be caused by jquery event aliases like .load, .unload or .error deprecated since jQuery 1.8. Look for these aliases in your code and replace them with .on.. 2019. 4. 3.
모바일 웹 meta 태그 설정 1. 설정사항 1) 뷰포트 선언 - meta name="viewport" 2) 콘텐트 선언 - content="width=device-width (디바이스 크기에 맞추겠다고 선언) initial-scale=1.0 (초기 크기 스케일 설정) minimum-scale=1.0 (최소 크기 설정 / 범위: 0~10.0) maximum-scale=1.0 (최대 크기 설정 / 범위: 0~10.0) user-scalable=no (사용자 기기 확대기능 사용유무 설정, yes/no) 확대를 하려면 user-scalable=yes로 주면 되지만 만약 초기, 최소, 최대를 같은 값으로 해놨다면 user-scalable을 yes로 해도 확대가 되지않습니다. 2. 예제 width를 사용자 디바이스 크기에 맞추고 초기 크기보다.. 2019. 4. 2.
[Java/이클립스] 이클립스 메모리 설정(Heap 영역 늘리기 / 속도향상) 이클립스/Eclipse 메모리 Heap 영역 늘리기 이클립스를 쓰다보면 자바의 기본 메모리 설정만으로는 부족할때가 있습니다. 이클립스 실행시에 자바 메모리 설정하는 부분은 이클립스가 설치되어 있는 폴더 안에 "eclipse.ini" 파일에 설정되어 있습니다. -startup plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.300.v20150602-1417 -product org.eclipse.epp.package.jee.product --launcher.defaultAction openFile --l.. 2019. 4. 2.
[Android] ADB 에뮬레이터 응답 없을 때 해결 방법 1. CMD 실행 안드로이드 SDK 설치 경로 확인 (제 PC는 android-sdks/platform-tools 안에 있었습니다) 위 상태에서 adb kill-server adb devices * 만약 이렇게 해도 되지않는다면 ctrl+alt+delete 해서 adb.exe강제 종료후 재시도 2019. 4. 2.
728x90