Incompatibility with jQuery 3.x
-
Hi,
it seems that this plugin requires jQuery 2.x
My site though runs with jQuery 3.x
The first thing that breaks is jQuery.fn.load which probably can be fixed quickly:
$(window).load(function() { … });
should be replaced with
$(window).on(‘load’, function() { … });
Can’t tell you what else needs to be fixed.
Can you update the plugin to run with both jQuery versions? That would be awesome!Thanks.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Incompatibility with jQuery 3.x’ is closed to new replies.