In the new jQuery-mobile 1.3 version how can be added a left panel that always be visible from the start?
This panel will be act as a navigation menu.
Thanks >
You can open it programatically like this:
$(document).on('pagebeforeshow', '#index', function(){ $( "#mypanel" ).panel( "open"); });
And here's a working jsFiddle example: http://jsfiddle.net/Gajotres/EkbYe/