jQuery Mobile page overrides desktop HTML div layout
- by batjko
I'd like to use jQuery mobile on my desktop page.
I'm probably thinking of this wrongly, but I tried simply inserting a page element into an existing standard div, like this:
<body>
<div id="left_sidebar"> [...] </div>
<div id="mylist" data-role="page">
<div data-role="listview"> [list items bla bla] </div>
</div>
<div id="right_sidebar"> [...] </div>
<div id="site_footer"> (c) bla blub </div>
</body>
...hoping that only the middle part displays the "mobile" page elements.
However, that page div seems to override the entire site and turns the whole body into a mobile page (albeit displaying my listview item nicely... across the entire screen).
Any idea what to do?
Advice is much appreciated.