Forums
(@jonpiehl)
7 years, 11 months ago
@flector – Do you have a GitHub for this plugin?
9 years, 11 months ago
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');
var image_url = $('img',html).attr('src');
With: var image_url = $(html).attr('src');
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’,)
12 years, 7 months ago
I’m getting this error too. Anyone have a solution. Thanks.