i know this have been posted before but they just didnt really show me what they did i heard something about .on ready? what about?? what about telling what to change it to :/ or what i should add.
https://jsfiddle.net/s2aj0zex/
====================================================================
====================================================================
...
====================================================================
...
====================================================================
I have this same problem
Change JQUERY 2.2.0 to 3.3.1 Only see vertical images (placehold)
I use Firefox 59.0.3
I guess you are running into this breaking change in jQuery 3: https://jquery.com/upgrade-guide/3.0/#deprecated-document-ready-handlers-other-than-jquery-function
if thats the case i need to add
1234 | $(fn);$().ready(fn);$(document).ready(fn);$("selector").ready(fn);
-- | --
?? or how i do this
Before:
$(document).ready(function() {
// ...
});
jQuery 3:
$(function() {
// ...
});
Great is there a way to make the sliders response? Right now all images just clash into each so there is example 6 images but only half of em viewable cuz they all clashing
When i try go mobile
Sendt fra min iPhone
Den 20. jul. 2018 kl. 16.48 skrev Alexander Schranz <[email protected]notifications@github.com>:
Before:
$(document).ready(function() {
// ...
});
jQuery 3:
$(function() {
// ...
});
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHubhttps://github.com/kenwheeler/slick/issues/3432#issuecomment-406623423, or mute the threadhttps://github.com/notifications/unsubscribe-auth/Aeyx2FuJ9Lc15NwdlPeT9ikDtC3FBUFlks5uIe2kgaJpZM4Tunw-.
work 100%
Most helpful comment
Before:
jQuery 3: