Guest User

Untitled

a guest
Oct 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. jQuery(document).ready(function() {
  2.     jQuery('#upload_image_button').click(function() {
  3.      formfield = jQuery('#upload_image').attr('name');
  4.      tb_show('', 'media-upload.php?type=image&TB_iframe=true');
  5.      return false;
  6.     });
  7.      
  8.     window.send_to_editor = function(html) {
  9.      imgurl = jQuery('img',html).attr('src');
  10.      jQuery('#upload_image').val(imgurl);
  11.      tb_remove();
  12.     }
  13. });
Add Comment
Please, Sign In to add comment