1

I have a requirement of showing pdf on click of a link in child browser, how can I achieve it? I'm using iOS and Android apps created using cordova

1 Answers1

0

Add cordova-plugin-inappbrowser Plugin


var wsUrl = "your PDF URL";
window.open(wsUrl, '_blank');
Ramprasath Selvam
  • 3,868
  • 3
  • 25
  • 41
  • @Ramprasnth: I want to open pdf on clicking a link inside child browser page. The answer doesnot agree with the question asked – Sreevenkatesh Sep 04 '19 at 12:58