Same problem
here, my fix was hacking through the javascript/css and disable some effects
and events, like this:
1. on my html header:
<script type="text/javascript">
$(document).bind("mobileinit",
function(){
$.mobile.defaultTransition =
'none';
});
</script>
include this before "jquery.mobile-1.0a4.1.js"
Transitions off!
2. disable ui-btn events
This was an ugly one, I just commented the entire
body in
var attachEvents = function() { line 3976 file
jquery.mobile-1.0a4.1.js
3. find those gradient backgrounds on the .css
"background-image: -webkit-gradient..."
and kill them too
I know is not nice but it improved the overall
experience on blackberry (testing on BB 9300 os 6) lost a lot of cool effects
but worth it, depending on the platform (specially blackberry) you should have an
alternative jquery mobile version (your own dirty little secret) and use it until
someone comes up with a better solution.