var list = []; $('.ti__container').each(function(){ var title = $.trim( $(this).find('.ti__title a').text() ); var artist = $(this).find('.ti__artist').find('meta').prop('content'); var date = $.trim( $(this).find('.ti__date').text() ); list.push( title + ' - ' + artist + ' - ' + date ); }); list = list.join('\n'); console.log( list );