jQueryのhistory.jsプラグインを使用したい。コードは次のとおりです。
// Global
var History = window.History;
$(document).ready(function() {
History.Adapter.bind(window, 'statechange', function(){
console.log('Yeeeeeeaah!');
});
window.History.pushState(null, null, '#42'); // Yeeeeeeaah!
});
function anotherFunc() {
window.History.pushState(null, null, '#test'); // Nothing happens
}
スコープの何が問題になっていますか?