| 1 |
/** |
| 2 |
* jQuery function to popup upload image box on clicking button with class st_upload_button |
| 3 |
*/ |
| 4 |
jQuery(document).ready(function() { |
| 5 |
jQuery('.st_upload_button').click(function() { |
| 6 |
targetfield = jQuery(this).prev('.upload-url'); |
| 7 |
tb_show('', 'media-upload.php?type=image&TB_iframe=true'); |
| 8 |
return false; |
| 9 |
}); |
| 10 |
window.send_to_editor = function(html) { |
| 11 |
imgurl = jQuery('img',html).attr('src'); |
| 12 |
jQuery(targetfield).val(imgurl); |
| 13 |
tb_remove(); |
| 14 |
} |
| 15 |
}); |
| 16 |
|