Instructions
PO: Apply current techniques, skills, and tools for application use and web development
CO: Design a basic computer system using appropriate software and computer technologies
CO: Design a basic computer system using appropriate hardware and computer technologies
Instructions:
Conduct Software
This week you will use PowerPoint to layout your website design. Each slide should represent a new page or link in your website. At a minimum your website should consist of the following:
Home page
About You page
Application prototype informational page
Marketing page
User Guide page
Part of your grade will be posting your PPTX file to the 2nd Week 5 discussion thread, and replying to at least 2 other students’ in that thread.
Your final product will consist of a real website in which will have to submit the URL to. You can use any of the freeware available (i.e. Google site) to create it.
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 });

