What makes a leader effective? How should leaders be measured?
Citation Source:
1. Northouse, P.G. (2013). Leadership: Theory and Practice (6th ed.). Thousand Oaks, CA: Sage. [ISBN-13: 978-1-4522-0340-9] -> read “Ch. 10 & Ch. 16”
2. HBR’s 10 Must Reads: On Leadership (Harvard Business Review Paperback Series). Harvard Business School Press. [ISBN 13: 978-1-4221-5797-8} -> read “What Makes a Leader”
3. Roberson, R.L. (2010). Quality: Tenets on Leadership. [ISBN 978-1-4609-8280-8] -> read “Ch. 4”
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 });

