You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I updated from jquery2 to jquery 3 and nyroModal throws an error, because its using .load() and .error().
I looked at the code and found 3 lines with this removed functions.
You can easy replace these lines
.load(function() {
with
.on('load', function() {
and the same for .error().
After this you can use nyromodal with jquery 3.
Unfortunately i cant use the minified version anymore now.
The text was updated successfully, but these errors were encountered:
I updated from jquery2 to jquery 3 and nyroModal throws an error, because its using .load() and .error().
I looked at the code and found 3 lines with this removed functions.
You can easy replace these lines
.load(function() {
with
.on('load', function() {
and the same for .error().
After this you can use nyromodal with jquery 3.
Unfortunately i cant use the minified version anymore now.
The text was updated successfully, but these errors were encountered: