I have a n array of imag src attributes from images that I was able to push to an array:
var imgSrcArray = Array();
$('.ito-image').each(function(){
imgSrcArray.push($(this).attr('src'));
});
I want to take these attributes now and create new images for a different purpose on my webpage how can I do this. And is this he best practice?