Assignment Question
Revise and expand on your Informative Essay so that it is a full-blown, academic research paper. One of the main tasks here is going to be to incorporate a thesis and persuasive paragraphs that stem from that thesis. Because that thesis is an argument, make sure you’re considering whether or not it’s a debatable statement. To add an argumentative element: Think about the purpose of this essay being more about revealing information that is not typically known about your topic and dismantling the “single story” that people might have about it (similarly to how Bella de Paulo quashed the assumptions people made about happiness in single vs. married people). You can also consider including a “call to action,” or a paragraph regarding what needs to be done to better support people from the identity you chose. Most of you have persuasive elements in your paper already—you’re already making arguments about your topic, showing the reality of identities that many people only have a “single story” about. But research papers, particularly persuasive ones, have a specific structure and format. You’ll need to reconstruct and reframe your essay so that it conforms to the requirements below, and conduct appropriate research in order to expand on your ideas.
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 });