Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Your html doesn't match the jquery mobile required structure and so you'll get nothing to see.</p> <p>Any html which should be visible need to be inside the data-role="content" div, inside a data-role="page" div </p> <p>If you just want to load the external html just do an ajax call (But I think the correct jQuery mobile way is better in view of transitions. Example:</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;meta charset="utf-8"&gt; &lt;title&gt; Inicio :: Autenticacion &lt;/title&gt; &lt;meta name="viewport" content="width=device-width,height=device-height, initial-scale=1"&gt; &lt;link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /&gt; &lt;script src="http://code.jquery.com/jquery-1.8.2.min.js"&gt;&lt;/script&gt; &lt;script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"&gt;&lt;/script&gt; &lt;script&gt; $(document).ready(function() { $('#boton').bind('click', function(event) { $.get('Fichero/index.html').success(function(html) { $('#container1').html(html); }); }); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div data-role="page" id="container0"&gt; &lt;div data-role="content"&gt; &lt;a id="boton" &gt;Change Page&lt;/a&gt; &lt;!-- Place the Container here because jQuery Mobile data-role="page" defines a browser fullscreen page (the dataroles are rules for formating a page and there can be only one visible page) --&gt; &lt;div id="container1"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload