@flector – Do you have a GitHub for this plugin?
The issue is in the Javascript.
In the file easy-author-image-uploader.js on line 16
Replace:
var image_url = $('img',html).attr('src');
With:
var image_url = $(html).attr('src');
Here’s another solution…
Find the file ‘easy-author-image-uploader.js’ in the js folder
On line 16, replace:
var image_url = $('img',html).attr('src');
with:
var image_url = $(html).attr('src');
(just remove ‘img’,)
I’m getting this error too. Anyone have a solution. Thanks.