nested lists & map ui
nested lists & map ui
i am a complete newcomer to jquery mobile as i was iui before but was having issues with the gmap api
this has got be something really simple but i'm going round in circles trying to work it out
basically i'm trying to combine a nested list with the google map plugin (http://code.google.com/p/jquery-ui-map/)
this seems to me it should work straightforwardly - the top 2 map links work perfectly and as they should but i get a page loading error in links in the nested section (submaps)
- <div data-role="page">
- <div data-role="header">
- <h1><a href="http://code.google.com/p/jquery-ui-map/">jQuery mobile with Google maps v3</a> demo</h1>
- </div>
- <div data-role="content">
- <ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="a">
- <li><a href="map2.htm">map 2</a></li>
- <li><a href="map3.htm">map 3</a></li>
-
- <li><h3><a href="#">submenu</a></h3>
- <ul>
- <li>submaps
- <ul>
- <li><a href="map2.htm">map 2</a></li>
- <li><a href="map3.htm">map 3</a></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- </div>