Is there a way for me to easily download the entire list of headline articles from this link:
I notice that there is a 'MORE' button which triggers an Ajax call. How can I go about downloading the complete list without having to deal with javascript or Ajax?
If you have any advice on how to accomplish this, it would be greatly appreciated.
Below is the javascript function related to the 'MORE' button:
function portfolioPagination(type, page, direction){
if ($(type + '_show_more')) {
$(type + '_show_more').remove();
$('show-more-preloader').style.display = "";
}
if (page == 0) return;
new Ajax.Updater({success: 'headlines_'+type}, '/account/ajax_headlines_content', {
parameters: { type: type, page: page, slugs: 'amzn', is_symbol_page : true},
insertion: 'bottom',
onComplete: function(){$('show-more-preloader').style.display = "none";}
});
if (window.pageTracker) pageTracker._trackEvent("Portfolio Tracking", 'Pagination', type+" - "+direction);
}