$('div.amaprod').each( function(i) { var rowArray = []; var title = $(this).find('div.ttl')[0].innerHTML; //console.log('Title ' + i + ': ' + title); var frameSrc = $(this).find('iframe')[0].src; rowArray = [i,title,frameSrc]; var outText = rowArray.join("|"); console.log(outText); }); /* Uses this link: http://www.medicalmedium.com/preferred/supplements NOTE: This self-project taught me a little about cross browser origin errors and that it is not easy to get information from an iframe if you are not the owner of the site the iframe is coming from. */