How to load uri link data in iOS home screen applications?

If I open the next page in Safari on iPad running 6.1.2, clicking on the first link will open a new tab with โ€œHello World!โ€ And the second will load โ€œHello Again!โ€. in iframe.

<html>
  <head>
    <meta name="apple-mobile-web-app-capable" content="yes" />
  </head>
  <body>
    <p>
      <a href="data:text/plain,Hello World!" target="_blank">data: uri new tab test</a>
    </p>
    <p>
      <a href="data:text/plain,Hello Again!" target="dataframe">data: uri iframe test</a>
    </p>
    <iframe name="dataframe" width="500" height="100"></iframe>
  </body>
</html>

If I add this page to the main screen, the links in the resulting application will do nothing.

Is there any method to get the URI data for download in the IOS home web application, either by downloading Safari to display the content, or by attaching it?

Or perhaps some other method for a home web application to locally store and display PDF files.

+5
source share

All Articles