Показать сообщение отдельно
  #2 (permalink)  
Старый 06.03.2017, 19:19
Аватар для ruslan_mart
Профессор
Отправить личное сообщение для ruslan_mart Посмотреть профиль Найти все сообщения от ruslan_mart
 
Регистрация: 30.04.2012
Сообщений: 3,018

window.history.replaceState = History.prototype.replaceState;
window.history.pushState = History.prototype.pushState;


или

var f = document.createElement('iframe');
f.onload = function() {
   var w = f.contentWindow;
   
   window.history.replaceState = w.history.replaceState;
   window.history.pushState = w.history.pushState;
   
   document.body.removeChild(f);
};
f.src = 'javascript:void 0';
f.style.display = 'none';
document.body.appendChild(f);

Последний раз редактировалось ruslan_mart, 06.03.2017 в 19:23.
Ответить с цитированием