This I Believe is based on a popular 1950s radio series of the same name hosted by acclaimed journalist Edward R. Murrow. Each day, Americans gathered by their radios to hear compelling essays from the likes of Eleanor Roosevelt, Jackie Robinson, Helen Keller, and Harry Truman, as well as corporate leaders, cab drivers, scientists, and housewives—anyone willing to distill into a few minutes the guiding principles by which they lived. Since 2005, the revival of This I Believe has featured essays by prominent Americans such as Colin Powell, Gloria Steinem, Bill Gates, Robert Fulghum, and Yo-Yo Ma, as well as those of everyday citizens, including students, artists, scientists, writers, politicians, and even an astronaut.
Last Completed Projects
topic title | academic level | Writer | delivered |
---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });