Hi,
I was facing the same issue for any version of IE.
I added the following snippet as a workaround and seems like it’s working fine.
<script type="text/javascript">
if (window.navigator.userAgent.indexOf("MSIE") > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {
if (window.location.href.indexOf("#ignorecookie-bu")<0){
window.location.href = window.location.href+ "#ignorecookie-bu"
}
}
</script>
-
This reply was modified 4 years, 3 months ago by antoppn.