1. How does the UN Convention of the Rights of People with Disabilities compare to the ADA?2. Identify a country that is interesting to you. (The country is Liberia, Where I come from) Do a little bit of internet research to explain how this country treats people with disabilities. How do the disability rights laws in this country compare to one of the US laws we have learned about this semester?Our last week of class will focus on international efforts to protect the rights of people with disabilities. We will specifically looking at the UN Convention on People with Disabilities — what it would do for people with disabilities across the world and why the United State’s Senate has refused to sign the treaty. The required reading/viewing for this class is the following:•The text of the Convention on the Rights of Persons with Disabilities (click here). Please focus on the rights that we’ve discussed in class so far this semester. If you’d like to read more, you are welcome to.•On Disabilities Treaty article (see attached) https://www.un.org/development/desa/disabilities/convention-on-the-rights-of-persons-with-disabilities/convention-on-the-rights-of-persons-with-disabilities-2.html•Video: “Disabled Activists Demand Ratification of Disability Treaty!”
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 });