I tried pasting the uploaded image into CKEditor using the following code,
var editor = CKEDITOR.instances.writearticle;
var value = '<img src="images/imagename.jpg">';
editor.insertHtml( value );
But that does not work. But when I try the same logic with this code
var editor = CKEDITOR.instances.writearticle;
var value = '<strong>Hello World</strong>';
editor.insertHtml( value );
Hello world , when bold text is inserted. Why doesn't it work for a tag <img>?
I found this procedure here and the <img>insert works on this site. What is the problem on my site?
source
share