or
<a href="javascript:void(0)"> <input id="FileName" name="FileName" type="file" /> <script> jQuery(function () { jQuery("#FileName").kendoUpload(); }); </script> </a><div data-role="view"> <!-- this would be the view to load the new view --> <div data-role="popover"> <div data-role="view"> <!-- this is where it's loaded into --> <ul data-role="listview"> <li><a href="view/TabView.html">Tab</a></li> </ul> </div> </div></div>
//edit: I noticed the following behavior when playing around with the listview's links:
<li><a data-transition="fade" href="view/TabView.html">inside</a></li> //opens inside the popover
<li><a data-rel="external" data-transition="fade" href="view/TabView.html">ext</a></li> //doesnt open at all on the phone
<li><a data-rel="external" data-transition="fade" href="#view/TabView.html">ext</a></li> //(notice the #) doesnt open at all on the phone but has exactly the desired behavior on the desktop
any suggestions?