Once you find an original research article that is related to your topic, please fill out the following questions (every member in the group have to fill out this checklist). The goal of this exercise is to teach you how to navigate through an original research article. This will also help you assess whether the chosen original research article is relevant to the research topic and that it is not a review article/case study. A sufficient original research article must meet 10 out of the 10 checklist items; otherwise, it is encouraged that you seek a different original research article to meet all the checklist requirements.
Instruction files
primary_research_article.pdf(574,70 KiB)
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 });

