I have to retract my last post. The problem is still there as in the first post. I’m trying to aislate the piece of code that is causing the problem to the following code into js/sr_image_upload_script.js lines 12 to 19:
window.send_to_editor = function(html) {
imgurl = jQuery('img', html).attr('src');
jQuery('#image-'+up_img_id).val(imgurl);
var image_src_live = "<img src='"+imgurl+"' height='150' width='150'>";
jQuery('#live-image-'+up_img_id).append(image_src_live);
jQuery('#Upload_button-'+up_img_id).hide();
tb_remove();
};
Seems that after enabling/disabling/enabling the plugin the problem has been solved for me. Maybe it was overlapping code with another plugin and enabling/disabling it the problem is no more.