function upload(id) { tb_show('Upload a logo', 'media-upload.php?type=image&TB_iframe=true&post_id=0', false); var idv = id; //store old send to editor function window.restore_send_to_editor = window.send_to_editor; // Display the Image link in TEXT Field window.send_to_editor = function (html) { var image_url = jQuery('img', html).attr('src'); var idval = jQuery(this).data("id"); console.log('#' + idv); jQuery('#' + idv).val(image_url); tb_remove(); window.send_to_editor = window.restore_send_to_editor; } return false; }