initialxy / cordova-plugin-themeablebrowser

Fork of org.apache.cordova.inappbrowser in an attempt to make it a bit more themeable and configurable to add some custom actions.
Apache License 2.0
294 stars 221 forks source link

How to get html content from url ?? #198

Open manhlh opened 4 years ago

manhlh commented 4 years ago

I try get html content with executeScript but NOT working:

      me.ref.executeScript({
        code: "document.getElementsByTagName('html')[0].innerHTML"
      }, function (html) {
        alert(html);
      });