stowball / jQuery-rwdImageMaps

Responsive Image Maps jQuery Plugin
http://mattstow.com
MIT License
1.56k stars 709 forks source link

jQuery 3 #103

Closed dkricher closed 8 years ago

dkricher commented 8 years ago

All you have to do to make this work in jQuery 3 is change:

$('').load(function() {

to

$('').on('load', function() {

.load() has been dropped from jQuery 3.

tillydray commented 8 years ago

This fixed my issue. Hopefully stowball can update the repo, as his is the #1 result on Google, and many people have linked to him in the past.

All you have to do to make this work in jQuery 3 is change:

$('').load(function() {

to

$('').on('load', function() {

.load() has been dropped from jQuery 3.