Я пытаюсь перенаправить страницу, используя метод, определенный в документации
$( document ).bind( "pagebeforeload", function( event, data ){
// Let the framework know we're going to handle the load.
event.preventDefault();
// ... load the document then insert it into the DOM ...
// at some point, either in this callback, or through
// some other async means, call resolve, passing in
// the following args, plus a jQuery collection object
// containing the DOM element for the page.
data.deferred.resolve( data.absUrl, data.options, page );
});
Но я не уверен, какие именно параметры принимает определенное значение. Я не могу найти документы нигде, какой именно там параметр страницы?