Mozilla VPN is currently experiencing an outage. Our team is actively working to resolve the issue. Please check the status page for real-time updates. Thank you for your patience.

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Uncaught TypeError: $(...).slick is not a function

  • 6 个回答
  • 1 人有此问题
  • 10 次查看
  • 最后回复者为 Matej

more options

Hello everyone.

I am currently working on a website kokolingo.hr

I have a slick-slider function inside of it which will create a slider with images: Slick slider

Now the issue is that right now, the slick-slider only breaks on Firefox and it looks like this MOST of the time: Broken slick slider

On top of that, while doing a force reload (CTRL + F5) it can sometimes load slick-slider without any issues and it doesn't throw an error. Both of the images were taken from Firefox itself.

How can I fix this? Most of the time people say that the libraries which make use of the slick-slider aren't loaded in correct order but they are.

If you need more information, simply ask what you need and I will try to deliver.

Matej

Hello everyone. I am currently working on a website kokolingo.hr I have a '''slick-slider''' function inside of it which will create a slider with images: [https://imgur.com/a/a24uENA Slick slider] Now the issue is that right now, the slick-slider only breaks on Firefox and it looks like this MOST of the time: [https://imgur.com/a/7NHQluv Broken slick slider] On top of that, while doing a force reload (CTRL + F5) it can sometimes load slick-slider without any issues and it doesn't throw an error. Both of the images were taken from Firefox itself. How can I fix this? Most of the time people say that the libraries which make use of the slick-slider aren't loaded in correct order but they are. If you need more information, simply ask what you need and I will try to deliver. Matej

所有回复 (6)

more options

It looks like your slick library is not ready at the time of using it. Try to move this script to the header.

more options

TyDraniu said

It looks like your slick library is not ready at the time of using it. Try to move this script to the header.

Nope, still doesn't work ://

more options

I've managed to get it to work a few times with a normal refresh (F5) and then all the sliders work.

more options

Odd timing issues can occur when script files are loaded from cache, but it's puzzling that the script is not recognized as having been read when hitting line 1990, the $(document).ready event handler. Or perhaps I should say that a different way: why is the script loaded and ready when bypassing the cache, but seldom ready when reloading the page from cache? It seems DOMContentLoaded (which I think is the event that jQuery .ready() hooks) has a different meaning for cached pages. ??

more options

cor-el said

I've managed to get it to work a few times with a normal refresh (F5) and then all the sliders work.

That is what is bugging my mind the most. Why does it work sometimes and sometimes doesn't?

more options

jscher2000 said

Odd timing issues can occur when script files are loaded from cache, but it's puzzling that the script is not recognized as having been read when hitting line 1990, the $(document).ready event handler. Or perhaps I should say that a different way: why is the script loaded and ready when bypassing the cache, but seldom ready when reloading the page from cache? It seems DOMContentLoaded (which I think is the event that jQuery .ready() hooks) has a different meaning for cached pages. ??

You might be onto something, I did edit my .htaccess file to cache/store JS files also. Maybe that is the issue? But again, in theory, wouldn't it then be the same for other browsers as well?

EDIT: Tried removing the .js extension so the cache wouldn't store .js files, but nothing changed sadly.

由Matej于修改