There are a minimum of twelve discussion topics for each discussion period. For each period, students should participate and engage in LEAST FIVE DISCUSSIONS and do so in TWO DIFFERENT WAYS.
For each of the five discussions in which a student participates, there should be TWO SEPARATE POSTINGS: an original posting and, within those same five discussions, a separate response posting, commenting on the ideas/views of another student. Response should be thoughtful and add to the discussions and must go beyond "I agree with Mary" or "Bob is wrong."
THAT’S TEN SEPARATE POSTING PER PERIOD.
Book:
The Humaniatic Tradition, Volume I: Prehistory to the Early Modern World, Sixth Edition
Fiero, Gloria K.
McGraw Hill
0-07-734627-0
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 });