Internal multipage links, some work, some don't
- <div data-role="page" id="fourexampleone">
- <div data-role="header">
- <h1>
- Example: Strings
- </h1>
- <div data-role="navbar" data-iconpos="top">
- <ul>
- <li>
- <a href="#myPanel" data-icon="grid">
- Navigation
- </a>
- </li>
- <li>
- <a href="#pageone" data-icon="home">
- Home
- </a>
- </li>
- <li>
- <a href="#" data-icon="search">
- Search
- </a>
- </li>
- </ul>
- </div>
- </div>
- <div data-role="main" class="ui-content">
- <div id="wrapper">
- <h1>
- Try it here
- </h1>
- <form id="code" action="#" method="post">
- <div>
- <label for="source">
- Source Code:
- </label>
- <textarea cols="40" rows="10" name="source" id="source">
- import java.lang.*; class TryMe{ public static void main(String args[]){ System.out.println("This is awesome"); } }
- </textarea>
- </div>
- <div>
- <label for="input">
- Input:
- <span class="description">
- (Data that will be given to the program on the stdin.)
- </span>
- </label>
- <textarea cols="40" rows="3" name="input" id="input">
- </textarea>
- </div>
- <div>
- <input type="submit" name="submit" value="Submit" />
- </div>
- </form>
- <div id="response">
- <div class="meta">
- </div>
- <div class="output">
- </div>
- </div>
- </div>
- <div data-role="footer" data-position="fixed">
- <div data-role="navbar">
- <ul>
- <li>
- <a href="#sectionfoursix" data-transition="slide" data-icon="arrow-l">
- Back
- </a>
- </li>
- <li>
- <a href="#fourexample2" data-transition="slide" data-icon="arrow-r">
- Example Two
- </a>
- </li>
- </ul>
- <div>
- Thanks
- </div>
- </div>
- </div>
- </div>
I have a single index file all my sites content is linked through the data-role="page" function. When I open these links in my browser, some work and some don't I can't figure out why
I hope its ok to post code here... The link to this page works perfect but linking to the next page(example two) does not work and no others after it will work. any ideas?