Selectmnenu repeated nesting
I have a selectmenu in a page and I want to save the page and use it offline. However, when I view the saved page the selectmenu has been nested in a button(?) Further attempts to save the subsequent page result in deeper nests being created. Why would this be so? Any help gratefully received. Here is my code:
- <!DOCTYPE html>
- <html>
- <head>
- <title>Error Test</title>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
- <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.0/jquery.mobile.min.css" />
- <script src="http://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.0/jquery.mobile.min.js"></script>
- </head>
- <body>
- <div id="page" data-role="page">
- <form>
- <label for="section-jump">Show Section</label>
- <select id="section-jump" name="section-jump">
- <option value="1">One</option>
- <option value="1">Two</option>
- </select>
- </form>
- </div>
- </body>
- </html>