There are 2 assessment events to do.
Each event should be in a separate file, so that I end up with 2 files.
Refer to assignment.pdf for what needs to be done.
This also has the marking criteria, which you need to refer to.
The learning resources are included in the ZIP files
The Shelly Beach Medical Center Org chart for Assessment Event 1 – Written report has been included (Shelley Beach Medical Center org chart.docx).
For Assessment event 1, there are 4 parts which are:
1) written report, 2) interview questions, 3) interview question responses, 4) Draft SLA
For Assessment event 2, there are 3 parts
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 });

