If I've multiple Image objects created like so:
var img0 = new Image();
var img1 = new Image();
var img2 = new Image();
What is the easiest and/or fastest way to wrap these into a jQuery object?
My current approach seems suboptimal:
var imgsJq = $(img0).add( $(img1) ).add( $(img2) );