You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue came in from @frontendplace. (original text below) Local injection (<a href="#someID" class="pat-inject" ) doesn't seem to work for IE10 and 11. @frontendplace has an isolated example available.
De ajax injectie werkt niet voor ie11 als het om een locale injectie gaat.
voeren we de naam in van het document zelf ( opnieuw ophalen van content) dan werkt het wel
dus Naar menu werkt niet en
<a href=独ndex.html#footermenu" class="pat-inject" data-pat-inject="target: self::element; trigger:autoload">Naar menu werkt wel.
Dit geldt niet voor firefox, safari en chrome daar werkt het wel goed.
heb jij enig idee hoe dit kan?
The text was updated successfully, but these errors were encountered:
IE 10/11 was failing because an ajax request was being made with the url
paramater being ''.
Chrome et al. will in this case request the current page, but IE instead
throws a SyntaxError.
However, if the url is '', then we are actually intending to inject content
from the current page, which means that an ajax request is unnecessary.
So the fix is to fetch the content from the current page instead of making an
ajax request.
IE 10/11 was failing because an ajax request was being made with the url paramater being an empty string.
Chrome et al. will in this case request the current page, but IE instead throws a SyntaxError.
However, if the url is an empty string, then we are actually intending to inject content from the current page, which means that an ajax request is unnecessary.
So the fix is to fetch the content from the current page instead of making an ajax request.
This issue came in from @frontendplace. (original text below) Local injection (
<a href="#someID" class="pat-inject"
) doesn't seem to work for IE10 and 11. @frontendplace has an isolated example available.Does not work in IE 10/11:
Works:
De ajax injectie werkt niet voor ie11 als het om een locale injectie gaat.
voeren we de naam in van het document zelf ( opnieuw ophalen van content) dan werkt het wel
dus Naar menu werkt niet en
<a href=独ndex.html#footermenu" class="pat-inject" data-pat-inject="target: self::element; trigger:autoload">Naar menu werkt wel.
Dit geldt niet voor firefox, safari en chrome daar werkt het wel goed.
heb jij enig idee hoe dit kan?
The text was updated successfully, but these errors were encountered: