Watch: CBS News – Should Employers Force Ex-Cons to Disclose Their Criminal Past. (Link: https://www.cbsnews.com/news/should-employers-force-ex-cons-to-disclose-their-criminal-past/Links to an external site. )Links to an external site.
Answer the following:
Since many jobs require background checks and many more job applications ask applicants whether they have ever been convicted of a felony, it can be very difficult (if not impossible) for people released from prison to find “legitimate” jobs. Do you think all people with felonies on their record should have to report them to any prospective employer who asks?
Can you come up with an alternative policy that could help give former prisoners a better chance at providing for themselves and their families through legal work?
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 });