The assignment is worth 70% of the module grade. It requires students to use their knowledge and skills gained in BUSM209 lectures and seminars along with extra reading to complete the following essay:
Select an advertising and media campaign of your choice that influences society for the better (from any country PLEASE CHOOSE OUTSIDE THE UK) and analyse it in terms of intended target market, message and media. Use relevant theory, concepts and academic literature to justify what elements you would keep and what elements you would change (3000 words SHARP). Please read the assessment criteria.
N.B. THIS MUST BE A DIFFERENT BRAND AND CAMPAIGN USED IN ASSESSMENT 1 – I WILL CHECK AND 10 MARK WILL BE DEDUCTED
WRITER DECIDE’S HOW MANY REFERENCES ARE NEEDED
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 });