show/hide this revision's text 3 added 13 characters in body

Can you try changing the src of the last-child and see if that makes a difference? You can then move that element to be the first child

//not tested

var $list=$('#shots>li');
$list.filter(':last-child').children('img')
.attr('src', newUrlp.ProductImageSmall)
.parent()
.insertBefore( $list.eq(0) );
show/hide this revision's text 2 deleted 5 characters in body

Can you try changing the src of the last-child and see if that makes a difference? You can then move that element to be the first child

//not tested

var $('#shots li:last-child>img').attr('src', newUrl).parent().insertBefore('#shots li:first-child')list=$('#shots>li');
$list.filter(':last-child').children('img')
.attr('src', newUrl)
.parent()
.insertBefore( $list.eq(0) );
show/hide this revision's text 1

Can you try changing the src of the last-child and see if that makes a difference? You can then move that element to be the first child

$('#shots li:last-child>img').attr('src', newUrl).parent().insertBefore('#shots li:first-child');