Hello I'm trying to use jquery mobile custom to remove all the things I don't need (sliders, panels, etc.).
I've downloaded jquery mobile custom 1.3.1 with all the options selected and when I look at the result on a browser, everything works (transition, arrow buttons on listviews) but the back, refresh and home buttons don't show up.
I used firebug to check if I was missing something but everything seems OK.
here is a sample of my code :
- <link rel='stylesheet' href='./extnew/jquery.mobile.custom.structure.min.css'/>
- <link rel='stylesheet' href='./extnew/jquery.mobile.custom.theme.min.css'/>
- <script src='./extnew/jquery.mobile.custom.min.js'></script>
- ....
- <div data-role='page' id='page1' data-theme='c' class='pull-demo-page'>
- <div data-role='header' data-theme='b' data-position='fixed'>
- <a href="#refr" data-icon="refresh" class="ui-btn-left" data-iconpos="notext"></a>
The icons do appear if I use the non custom jquery mobile.
Any pointer on what is missing ?
Thank you.