Advertisement
Guest User

Untitled

a guest
Feb 20th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //PORTFOLIO BUTTON
  2.  
  3. jQuery(document).ready(function() {
  4.  
  5. jQuery('#boldyp_pitemlbutton').click(function() {
  6. window.send_to_editor = function(html) {
  7.  imgurl = jQuery('img',html).attr('src');
  8.  jQuery('#boldyp_pitemlurl').val(imgurl);
  9.  jQuery('#boldyp_pitemlsrc_img').attr('src',imgurl);
  10.  tb_remove();
  11. }
  12.  
  13. post_ID = jQuery('#post_ID').val();
  14. tb_show('', 'media-upload.php?post_ID='+post_ID+'&type=image&TB_iframe=true');
  15.  return false;
  16. });
  17. });
  18.  
  19.  
  20. //FEATUED BUTTON
  21. jQuery(document).ready(function() {
  22.  
  23. jQuery('#boldys_slideimage').click(function() {
  24. window.send_to_editor = function(html) {
  25.  imgurl = jQuery('img',html).attr('src');
  26.  jQuery('#boldys_slideimage_src').val(imgurl);
  27.  jQuery('#boldys_slideimage_src_img').attr('src',imgurl);
  28.  tb_remove();
  29. }
  30.  
  31. post_ID = jQuery('#post_ID').val();
  32. tb_show('', 'media-upload.php?post_ID='+post_ID+'&type=image&TB_iframe=true');
  33.  return false;
  34. });
  35. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement