Assignment Question
Discussion Board Evaluation Criteria: The following points are what is looked for in your original postings to the Discussion Board and your replies to others postings (Total of 10 points for each Discussion Board assignment). Original Posting (7 points)
- Mentions at least 2 specific points from the article or reading. (1 point)
- Relation of new information to old information learned in the course to date. (1 point)
- Relation of information in article or reading to personal experience. (1 point)
- Citation of at least one article used. (3 points)
- Length of posting approximately 2 paragraphs (5-8 collegiate level sentences). (1 point)
- Replies to Others’ Postings (3 points)
- Discuss one point you like/agree with, and one point you dislike/disagree with and explain why. (2 points)
- Length of posting approximately 2 paragraphs (5-8 collegiate level sentences). (1 point)
LATE DISCUSSION POSTS WILL RESULT IN A GRADE PENALTY Topic Theatre Makers Contains unread posts Nov 19 – Nov 30 If you got a chance to set the curriculum for this semester of Theatre Appreciation, what lessons/topics would you teach? How do you believe these lessons/topics are important to the HBCU student?
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 });