Assignment Question
Create a First or Second Grade math quiz through Google Forms. This quiz can be based on any part of math that is taught in First or Second Grade. Your quiz can either be in open-ended or multiple-choice format, and the final product will be posted in the google classrooms that you created last week.
Assignment Requirements: (Please review carefully, as each requirement is worth credit!) Quiz should begin with asking for the student’s name as a required field (please see tutorial for instructions on that).
Quiz should include 10-15 questions, not including the required name. The questions should be clear and Grade-level appropriate Please add your own unique theme, colors, or fonts. Feel free to include corresponding pictures and videos as well. You can include a video and have the students’ respond to it… the sky’s the limit!
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 });

