I am working in phonegap for windows phone 8 app. Currently I am stuck with opening a pdf file from LOCAL AREA (like in phone >> documents >> myfolder>>1.pdf)
I tried in js
document.addEventListener("deviceready", deviceready, false);
function deviceready() {
window.open('.documents/myfolder/1.pdf', '_blank', 'location=no');
}
but it doesn't work.
I also tried
window.open('**documents**/myfolder/1.pdf', '_blank', 'location=no');
and
window.open('**/documents**/myfolder/1.pdf', '_blank', 'location=no');
but neither works.
Otherwise, if there is a PDF viewer plugin for phonegap and WP8, please share the link.
Note: I have adobe pdf reader installed on the phone