is is possible to just disable the "error loading page" message in jQueryMobile? i have the following in my head and a) the message still shows up. b) the text isn't correct
<script>
$(document).bind("mobileinit", function(){
$.mobile.pageLoadErrorMessage = 'coming right up!';
});
$(document).bind("mobileinit", function(){
$.mobile.pageLoadErrorMessage = true;
});
</script>