Make a Gift

THE LAWRENCE HERBERT SCHOOL OF COMMUNICATION

JOURNALISM, MEDIA STUDIES, AND PUBLIC RELATIONS

The Department of Journalism, Media Studies, and Public Relations at Hofstra University provides students with real-world experience in professional settings combined with education in the theory, art, and practice of journalism and public relations. 

Journalism Students

Learn to think critically as you explore countless opportunities to express yourselves creatively and prepare for careers as the next generation of communication leaders.

Programs Minors

At Hofstra

Hofstra’s Department of Journalism, Media Studies, and Public Relations offers dynamic courses and out-of-the-classroom experiences.

Internships Student Organizations Content Suite
Student with Ring Light
Student with Ring Light

Your Future

Our students graduate prepared for careers in online, broadcast and print journalism, information graphics, media analysis, scholarly research, and public relations.

Network of Success

Directory

Explore our award-winning faculty.
Meet the Faculty

Facilities

Take a look inside the Herbert School.
Explore the Facilities

Student Productions

Shows and films driven by students
Watch Our Work

Student Organizations

The heart of our programs
See Student Groups

Mission Statement

What we strive to accomplish
Read the Mission Statement

Professional Values and Competencies

What you’ll take from our programs
Explore Values and Objectives

Mission, Goals, and Strategy

The undergraduate programs offered by the Department of Journalism, Media Studies, and Public Relations are accredited by the prestigious Accrediting Council on Education in Journalism and Mass Communications. Our programs meet the ACEJMC’s rigorous requirements and follow the organization’s guiding principles, which form the basis of the department’s mission, goals, strategy, and assessment plans. 

ACEJMC

Contact the Department

Room 322 The Lawrence Herbert School of Communication
111 Hofstra University
Hempstead, NY 11549

P: 516-463-4873
F: 516-463-4866

Monday – Friday: 9 a.m.-5 p.m.
Summer: 9 a.m.-4 p.m.

Jingsi Christina Wu, PhD
Professor, Dept. of Journalism, Media Studies, and Public Relations

516-463-5226

Email

Victoria Semple
Associate Professor, Dept. of Journalism, Media Studies, and Public Relations

516-463-6513

Email

Student retention and graduation rates, and internship information.

Public Accountabiity
Four people sit at a news desk having a discussion; behind them is a large digital screen with a blue news graphic. They appear engaged and focused on the conversation.
THERE’S NO LIMIT TO WHAT YOU’LL CREATE

Develop your unique perspective and the professional skills to share it with the world. The Lawrence Herbert School of Communication provides the technical training, creative freedom, and industry connections to help your voice reach its intended audience.

(function () { // CONFIG const paramName = “modal”; // ?modal=registration const maxAttempts = 20; // how many times to poll for modal (for dynamic content) const attemptInterval = 200; // ms between polls const removeParamAfterOpen = true; // clean URL after opening function queryParam() { return new URLSearchParams(window.location.search).get(paramName); } function cleanUrl() { if (!removeParamAfterOpen) return; const url = new URL(window.location.href); url.searchParams.delete(paramName); history.replaceState({}, document.title, url.pathname + url.search); } function openBootstrap5(modalEl) { try { const instance = bootstrap.Modal.getOrCreateInstance(modalEl); instance.show(); cleanUrl(); return true; } catch (e) { console.warn(“Bootstrap 5 modal open failed:”, e); return false; } } function openBootstrap4JQuery(modalEl) { try { // Requires jQuery + bootstrap 4 plugin if (window.jQuery && typeof jQuery(modalEl).modal === “function”) { jQuery(modalEl).modal(“show”); cleanUrl(); return true; } } catch (e) { console.warn(“Bootstrap 4/jQuery modal open failed:”, e); } return false; } function clickTrigger(selector) { const trigger = document.querySelector(selector); if (trigger) { trigger.click(); cleanUrl(); return true; } return false; } function tryOpenModal(modalName) { if (!modalName) return false; // Candidate selectors to try (ID variations and data attribute triggers) const candidates = [ `#${modalName}Modal`, // registrationModal `#${modalName}`, // registration `[data-modal=”${modalName}”]`, // custom attr `[data-bs-target=”#${modalName}Modal”]`, // bootstrap trigger (BS5) `[data-bs-target=”#${modalName}”]`, `[data-target=”#${modalName}Modal”]`, // bootstrap trigger (BS4) `[data-target=”#${modalName}”]` ]; for (const sel of candidates) { const el = document.querySelector(sel); if (!el) continue; // If selector points to modal element itself (starts with ‘#’) if (sel.startsWith(“#”)) { const modalEl = el; // Try Bootstrap 5 if (window.bootstrap && typeof window.bootstrap.Modal === “function”) { if (openBootstrap5(modalEl)) return true; } // Try Bootstrap 4 via jQuery fallback if (openBootstrap4JQuery(modalEl)) return true; // If modal uses a custom class toggle (rare), try adding ‘show’ & ‘modal-open’ modalEl.classList.add(“show”); document.body.classList.add(“modal-open”); modalEl.style.display = “block”; cleanUrl(); return true; } // If selector is a trigger button/link, click it if (clickTrigger(sel)) return true; } return false; } function waitForAndOpen(modalName, attemptsLeft) { if (attemptsLeft waitForAndOpen(modalName, attemptsLeft – 1), attemptInterval); } // Run on DOM ready document.addEventListener(“DOMContentLoaded”, function () { const modalName = queryParam(); if (!modalName) return; // Small delay can help on heavy CMS pages setTimeout(() => waitForAndOpen(modalName, maxAttempts), 100); }); })();