Search code examples
cordovawindows-phone-8inappbrowser

Windows Phone 8 Cordova- Unable to open file from WWW folder


I am using Cordova for Windows Phone 8 app, which has to load some local pages in InAppBrowser. When we try loading remote urls like google or rediff its works perfectly fine, but when loading local files it shows error sayinh " we are having thouble displaying this page"

My code is var link = "www/pages/windowsPayment.html"; window.open(link, '_blank', 'location=yes');


Solution

  • got it resolved.... user relative location url for HTML page. for example, if your page is in folder www/index and page you want to open is www/test.html open it with url ../test.html.