I'm getting the following error when initialising and changing slide.
TypeError: a is undefined
From the jQuery file.
Looked it up, looks like the problem is that since jQuery 1.8 .load() is no longer supported. And we need to use .on("load", function(){}) to do the same thing.
http://stackoverflow.com/a/37915907
Doing this in the source seems to break the initialisation.
I'm getting the following error when initialising and changing slide. TypeError: a is undefined From the jQuery file. Looked it up, looks like the problem is that since jQuery 1.8 .load() is no longer supported. And we need to use .on("load", function(){}) to do the same thing. http://stackoverflow.com/a/37915907
Doing this in the source seems to break the initialisation.