As most Americans have smart phones, tablets, and computers the utilization of social media is common place.
NCSBN has developed guidelines for nurses and nursing students for using social media responsibly. View the video.
If you were writing a hospital policy on smart phone and social media usage, what should be included in the policy?
How can you help both new and experienced nurses understand how social media can be properly used in the profession without breaking patient? What potential ethical and legal liabilities are there for the hospital and employees?
In 2007, Harvard University rescinded admission to 10 students after reviewing their social media post.
Do you feel potential employers, current employers, and colleges have the right to access your social media post? Do you feel employers and universities should make decisions based on your post?
Discuss the relationship between accreditation decisions, reimbursement, quality of care, informatics.
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 });