Guest User

Untitled

a guest
Jun 18th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. $("#productSelector").change( function(){
  2. productID = $(this).val();
  3. $.post(
  4. '/action/getProductImages.php',
  5. { productID: productID },
  6. function( data ){
  7. $("#productImageholder").children().fadeOut(500,function(){
  8. $(this).remove();
  9. $.each(data.images, function(i,image){
  10. var newImg = $("<img/>").wrap("<a href='#TB_inline?height=400%&width=600%&inlineId=productImagePopup-edit' class='thickbox'></a>");
  11. newImg.attr({
  12. src: image.src,
  13. title: image.title
  14. }).hide().appendTo("#productImageholder").fadeIn(500);
  15. });
  16. $("#imageUploader input[name='productID']").val( data.productID );
  17. });
  18. },
  19. 'json'
  20. );
  21. });
Add Comment
Please, Sign In to add comment