I'm trying to address the issue with Facebook OAuth and jQuery Mobile as described at the bottom of http://jquerymobile.com/test/docs/pages/page-navmodel.html .
On a registration page I have a "Sign in with Facebook" button. When I click the button I get a "Page Load Error".
Added to the registration page:
<div data-role="page" id="register">
<script>
$("#register").live('pageinit',function() {
if (window.location.hash == "#_=_")
window.location.hash = "";
});
</script>
</div>
but that didn't help - still same problem. Any ideas what I'm doing wrong here?