20 lines
801 B
Markdown
20 lines
801 B
Markdown
Выкачиваем fancybox по этой ссылке: [http://fancybox.net/js/fancybox-1.3.4/jquery.fancybox-1.3.4.js](http://fancybox.net/js/fancybox-1.3.4/jquery.fancybox-1.3.4.js)
|
||
|
||
Открываем любым текстовым редактором и заменяем строку 25
|
||
|
||
```
|
||
isIE6 = $.browser.msie && $.browser.version < 7 && !window.XMLHttpRequest,
|
||
```
|
||
|
||
на следующую:
|
||
|
||
```
|
||
isIE6 = navigator.userAgent.match(/msie [6]/i) && !window.XMLHttpRequest,
|
||
```
|
||
|
||
А также заменяем на 617-ой строке `$.browser.msie` на `navigator.userAgent.match(/msie [6]/i)`
|
||
|
||
Сохраняем на сервере, обновляем страницу с `Ctrl`+`Shift`+`R`.
|
||
|
||
[https://axenov.dev/old-fancybox-jquery-fix/](https://axenov.dev/old-fancybox-jquery-fix/)
|