I need to store a bunch of Image SRC attribute values in an array. I want to search the DOM for all <img> tags and grab the SRC attribute for each and put it into an array.
I know I can create an array like: var imgSrc = new Array();
But how do I add each SRC attribute to the array?