<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic load url using inAppBrowser while retaining the layout in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/load-url-using-inAppBrowser-while-retaining-the-layout/m-p/1111397#M72446</link>
    <description>&lt;P&gt;Dear all,&lt;/P&gt;

&lt;P&gt;I'm new to Intel XDK.I need a simple solution to load external url in my app inside the layout i.e. retaining the header footer i've designed. Plz help&lt;/P&gt;

&lt;P&gt;Anxiously waiting for a solution.&lt;/P&gt;

&lt;P&gt;Ali&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 30 Apr 2016 15:06:33 GMT</pubDate>
    <dc:creator>Ali_R_</dc:creator>
    <dc:date>2016-04-30T15:06:33Z</dc:date>
    <item>
      <title>load url using inAppBrowser while retaining the layout</title>
      <link>https://community.intel.com/t5/Software-Archive/load-url-using-inAppBrowser-while-retaining-the-layout/m-p/1111397#M72446</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;

&lt;P&gt;I'm new to Intel XDK.I need a simple solution to load external url in my app inside the layout i.e. retaining the header footer i've designed. Plz help&lt;/P&gt;

&lt;P&gt;Anxiously waiting for a solution.&lt;/P&gt;

&lt;P&gt;Ali&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2016 15:06:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/load-url-using-inAppBrowser-while-retaining-the-layout/m-p/1111397#M72446</guid>
      <dc:creator>Ali_R_</dc:creator>
      <dc:date>2016-04-30T15:06:33Z</dc:date>
    </item>
    <item>
      <title>Easy way is to use window</title>
      <link>https://community.intel.com/t5/Software-Archive/load-url-using-inAppBrowser-while-retaining-the-layout/m-p/1111398#M72447</link>
      <description>&lt;P style="margin-bottom: 1em; border: 0px; font-size: 15px; clear: both; color: rgb(36, 39, 41); font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 19.5px;"&gt;Easy way is to use&amp;nbsp;&lt;CODE style="margin: 0px; padding: 1px 5px; border: 0px; font-size: 13px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: pre-wrap; background-color: rgb(239, 240, 241);"&gt;window.location=&lt;/CODE&gt;&amp;nbsp;to load URL:&lt;/P&gt;

&lt;PRE style="margin-top: 0px; margin-bottom: 1em; padding: 5px; border: 0px; font-size: 13px; width: auto; max-height: 600px; overflow: auto; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; word-wrap: normal; color: rgb(36, 39, 41); background-color: rgb(239, 240, 241);"&gt;&lt;CODE style="margin: 0px; padding: 0px; border: 0px; font-size: 13px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: inherit;"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=no"&amp;gt;
    &amp;lt;script src="cordova.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;script&amp;gt;
        window.location = "http://www.yourwebsite.com";
    &amp;lt;/script&amp;gt;    
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P style="margin-bottom: 1em; border: 0px; font-size: 15px; clear: both; color: rgb(36, 39, 41); font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 19.5px;"&gt;Better way is to use&amp;nbsp;&lt;CODE style="margin: 0px; padding: 1px 5px; border: 0px; font-size: 13px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: pre-wrap; background-color: rgb(239, 240, 241);"&gt;InAppBrowser&lt;/CODE&gt;&amp;nbsp;and&amp;nbsp;&lt;CODE style="margin: 0px; padding: 1px 5px; border: 0px; font-size: 13px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: pre-wrap; background-color: rgb(239, 240, 241);"&gt;connection&lt;/CODE&gt;&amp;nbsp;Cordova plugins to load website, so that you can handle connection loss and reload, it will load complete website in background and then display, here is code:&amp;nbsp;&lt;A href="https://github.com/krisrak/html5-cordova-webapp" rel="nofollow" style="border: 0px; color: rgb(0, 89, 153); cursor: pointer;"&gt;https://github.com/krisrak/html5-cordova-webapp&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 17:52:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/load-url-using-inAppBrowser-while-retaining-the-layout/m-p/1111398#M72447</guid>
      <dc:creator>Amrita_C_Intel</dc:creator>
      <dc:date>2016-05-02T17:52:39Z</dc:date>
    </item>
  </channel>
</rss>

