Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<pre><code> I stripped your footer menu blocks and if you look at this structure it will probably help you out to why your page is not navigating to the next page... Be sure to take a look at the naming conventions as well pertaining to the anchor tags... &lt;!DOCTYPE html&gt; &lt;html lang="de"&gt; &lt;head&gt; ... &lt;link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css"&gt; &lt;!-- jQuery and jQuery Mobile --&gt; &lt;script src="http://code.jquery.com/jquery-1.9.1.min.js"&gt;&lt;/script&gt; &lt;script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;!-- Page 1 --&gt; &lt;section id="firstpage" data-role="page"&gt; &lt;div id="header" data-theme="c" data-role="header"&gt; &lt;a id="menu" data-role="button" href="#menue" data-icon="grid" data-iconpos="notext" class="ui-btn-left info"&gt;&lt;/a&gt; &lt;h3&gt;Body Change&lt;/h3&gt; &lt;/div&gt; &lt;div id="content" data-role="content"&gt; &lt;p&gt;This is page 1&lt;/p&gt; &lt;p&gt;&lt;a href="#secondpage"&gt;Go to second page&lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;div id ="footer" data-role="footer"&gt; footer &lt;/div&gt; &lt;div&gt; &lt;/section&gt; &lt;!-- Page 2 --&gt; &lt;div data-role="page" id="secondpage"&gt; &lt;div id="header" data-theme="c" data-role="header"&gt; &lt;a id="menu" data-role="button" href="#menue" data-icon="grid" data-iconpos="notext" class="ui-btn-left info"&gt; &lt;/a&gt; &lt;h3&gt;Body Change&lt;/h3&gt; &lt;/div&gt; &lt;div id="content" data-role="content"&gt; this is page 2 &lt;p&gt;&lt;a href="#firstpage"&gt;Go to first page&lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;div id ="footer" data-role="footer"&gt; footer &lt;/div&gt; &lt;div&gt; </code></pre>
 

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