Please do all 3 I need all 15 points of extra credit. If you’d like extra credit, please upload a document or write in the textbox the following: One paragraph discussing a group in a film, TV show, or news clip.
This should be about 3 sentences describing the group you are focusing on. (Example: Game of Thrones, where you focus on one of the houses (families) in the show.) One paragraph that connects this example to a concept from class.
This paragraph should be about 3 sentences and should include an explanation of the concept you’ve chosen. (Example: Explaining the different leadership styles within the family you discussed above.) Each post is worth 5 points.
You can receive up to 15 points extra credit, which means you can do up to 3 posts (unless you received extra credit in other ways). As always, feel free to email me if you have any questions about this extra credit assignment.
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 });
