addBackBtn how to turn off
in my, mobileinit I try to set the addbackBtn to false, but think I'm missing something.
$(document).bind("mobileinit", function() {
$.mobile.addBackBtn = false;
});
doesn't work. I'm trying to turn off the auto generated back button. My theme is E but I want all my buttons theme B. I have no problem doing this for the buttons I generate but figured I would add my own BACK button so I could change the theme of the Button to "B" and keep the pages at theme E
I do link my scripts as recommended by the docs, my code is in my std_script.js file
<script src="/jquery-1.5.min.js"></script>
<script src="/std_script.js"></script>
<script src="/jquery.mobile-1.0a3.min.js"></script>
Thanks
Andy