How to replace img tag with pitcure tag in summernote? – Jquery ajax
I am trying to replace img tag with picture tag in editor. Editor adding url like : <img src="http://localhost/news/uploads/large/6dBUlfZZBW.webp"> With the following code on upload success : success: function(url) { var image = $('<img>').attr('src','http://' +url); $('#summernote').summernote("insertNode", image[0]); } And I…