Hi,
Apparently, it’s the find(“img”) that’s looking for non-existing descendent elements and returning undefined. Changing
var imageid = jQuery(html).find(‘img’).attr(‘class’).match(/wp\-image\-([0-9]+)/)[1];
to
var imageid = jQuery(html).attr(‘class’).match(/wp\-image\-([0-9]+)/)[1];
seems to solve the problem.
Hi,
The plugin is clean and simple. Thank you. I’ve installed it on 2 different projects and I get this js error after clicking ‘Insert into Post’ on an image in the Media Library:
$(html).find(“img”).attr(“class”) is undefined
Line 22 of wp-simple-gallery-admin.js version 1.22. Looks like the class ‘wp-image-[#] can’t be found. I’ve deactivated all other plugins to isolate. This happens when using both the older and newer image uploaders in WP. Any help is appreciated.
Thanks