Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE11 compatibility #39

Open
Groverize opened this issue Aug 8, 2018 · 3 comments
Open

IE11 compatibility #39

Groverize opened this issue Aug 8, 2018 · 3 comments

Comments

@Groverize
Copy link

Hi all,
I recently ran into an issue with IE11 compatibility. The issue was with this line:
jQuery(this.el.nativeElement)[0].innerHTML= '';

Updating this to this:
jQuery(this.el.nativeElement)[0].textContent = '';
Fixed the issue for me.

Just an FYI for anyone else having this issue (if anyone still has to support IE11 like me)

Feel free to tell me any reason this might be wrong also.

@itanex
Copy link

itanex commented Sep 12, 2018

What file and line number is that on?

@muslim-niche
Copy link

muslim-niche commented Sep 13, 2018

In IE 11 slick slider is not working fine. In my case I am inserting more slides on afterChange event so when I click next button several times after that the slides start appearing.
1

In second image I have clicked next button several times
2

@bncunha
Copy link

bncunha commented May 29, 2019

Hi all,
I recently ran into an issue with IE11 compatibility. The issue was with this line:
jQuery(this.el.nativeElement)[0].innerHTML= '';

Updating this to this:
jQuery(this.el.nativeElement)[0].textContent = '';
Fixed the issue for me.

Just an FYI for anyone else having this issue (if anyone still has to support IE11 like me)

Feel free to tell me any reason this might be wrong also.

This works for me too. Thank you very much!
This code is in file 'index.js' and 'ngx-slick.umd.js'.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants