## 앱스프레소에서 전화걸기를 테스트 해 봤습니다. 잘 됩니다.
앱스프레소 > jQueryMobile 프로젝트로 생성후 Index.html 에 아래와 같이 링크함
<a href="tel:02-3397-0388">전화걸기</a>
## 웹에있는 소스를 링크해서 전화걸기를 테스트 해 봤습니다. 안 됩니다.
앱스프레소 > blank 프로젝트 생성호 Index.html 에 웹파일을 링크함
<meta http-equiv="refresh" content="0;url=http://11.22.33.44/
test.html"/>
test.html 에는 아래와같이 소스를 구성함.
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/
jquery.mobile-1.0a1.min.css" />
<script src="</script">http://code.jquery.com/
jquery-1.4.3.min.js"></script>
<script src="</script">http://code.jquery.com/mobile/1.0a1/
jquery.mobile-1.0a1.min.js"></script>
...
<a href="tel:02-3397-0388">전화걸기</a>
...
전화걸기를 클릭하면 Error Loading Page 라는 메시지가 뜹니다.
전화걸기가 앱스프레소 API 를 쓰는것이 아닌가 생각되는데요.
test.html 의 헤더링크 구성을 어떻게 해야 할까요?