Load dynamic page return blanck page at second time

Hello, i discover framework7 and i’ve a problem
i have li called by ajax like
li class=“top5” data-idpoi=“1”>xxx
li class=“top5” data-idpoi=“2”>yyy …

i would like call the same page with different id, my function
$("#recherche").on(“click”,".top5", function(){

mainView.router.loadPage(‘detail.html?id=’+ $(this).data(“idpoi”),
{
ignoreCache:true,
reloadAll:true,
reloadCurrent:true,
ignoreCache:true,
pushState:true,
clearPreviousHistory:true,
force: true

})
})
First call run as well, and second click (when detail is already displayed) return blank page :frowning_face:
Can you help me?
Thanks