Skip to main content

For a complete listing of all the courses in the Women’s and Gender Studies catalog, visit here

Course NameCourse NumberSectionProfessorDaysTime
FYS: Sexuality and SalvationWGST 67H001BloeschTR2-3:15
Intro to Women's StudiesWGST 101001BloeschTR11-12:15
Intro to Women's StudiesWGST 101601, 602, 603STAFFF10:10-11:25
Intro to Women's StudiesWGST 101604, 605, 606STAFFF12:30-1:35
Intro to Sexuality StudiesWGST 111001AshleyMWF10:10-11:00
Intro to Feminist ThoughtWGST 202001HinderliterTR9:30-10:45
Gender and Pop CultureWGST 231001KiserTR8:00-9:15
Intro to Transgender StudiesWGST 270001JohanekMWF9:05-9:55
Women's Health Activism in 20th Century AmericaWGST 330001HinderliterTR8-9:15
Rahtid Rebel Women: An Introduction to Caribbean WomenWGST 352001ShieldsTR8-9:15
Internship in WGSTWGST 393001BoothTH3:30-4:45
Theorizing Black FeminismsWGST 553001MerrittMW3:35-4:50
Senior Seminar: Principles of Feminist InquiryWGST 695001BoothTR11-12:15
Course NameCourse NumberSectionProfessor DaysTimeCrosslist
Growing Up Girl, Globally66001AshleyMWF9:05-9:55
Introduction to WGST101001BloeschTU/TH11-12:15
Introduction to WGST 101603, 604TBDTH3:30-4:45
Introduction to WGST 101605,606TBDF1:25-2:40
Introduction to Sexuality Studies111001BoothTU/TH11-12:15
Introduction to Sexuality Studies111002AshleyMWF12:20-1:10
Sex and Gender in Society124001Martinez EchagueTU/TH5:00-6:15SOCI
Sex and Gender in Society124002PalmerMWF11:15-12:05SOCI
Iranian Women Writers127001YaghoobiT5:00-7:30ASIA
Intro to Gay/Lebsian Lit140001WeberTU/TH9:30-10:45ENGL
Intro to Gay/Lebsian Lit140002LofstromTU/TH11:00-12:15ENGL
Women and Music188001MacneilTU/TH9:30-10:45MUSC
Introduction to Feminist Thought202001BoothTU/TH3:30-4:45
Intro to Gender Communications224001DoolingTU/TH9:30-10:45COMM
Intersectional Social Justice249001FairclothTU/TH9:30-10:45AMST, POLI, ENGL
Women in Modern Europe259001HagemannTU/TH12:30-1:45EURO, HIST
Introduction to Transgender Studies270001JohanekMWF9:05-9:55
Philosophical Issues of Gender275001SlankTU/TH8:00-9:15PHIL
Special Topics290001MerrittTU/TH3:30-4:45
Leadership in Violence Prevention340001AshleyMW3:35-4:50
Gender & Film345001BloeschTU/TH3:30-4:45
Rahtid Rebel Women: An Introduction to Caribbean Women352001ShieldsTU/TH9:30-10:45
LGBT History in the US360001SchultzTU/TH2:00-3:15HIST
Women of Color in Contemporary United States Social Movements368001CorbinMW3:35-4:50
Gender in Premodern China and Korea418001BaeTU/TH2:00-3:15ASIA, HIST
Gender, Class, Race, and Mass Media442001FriedmanTU/TH3:30-4:45MEJO
Theorizing Black Femnisms553001MerrittTU/TH5-6:15
Senior Seminar: Principles of Feminist Inquiry695001VigilTU/TH3:30-4:45
Graduate Seminar in Women's Studies790001
ShieldsTU2-5
footer images of students, faculty, and staff of women's and gender studies

tags inside buttons */ window.addEventListener('DOMContentLoaded', (event) => { // Find all button elements on the page const buttons = document.querySelectorAll('button'); // Loop through each button buttons.forEach(button => { // Find all

elements within each button const paragraphs = button.querySelectorAll('p'); // Loop through each paragraph and remove it if it's empty paragraphs.forEach(p => { if (p.textContent.trim() === '') { p.remove(); } }); }); }); //----------------------------------------- // Content Template: page-template-no-1 - end //----------------------------------------- //----------------------------------------- // Content Template: tabs-font-awesome-css-and-javascript - start //----------------------------------------- //Font Awesome jQuery(function($){ $(document).ready(function() { var s = document.createElement("script"); s.type = "text/javascript"; s.src = "https://kit.fontawesome.com/d949d8fb59.js"; // Use any selector $("head").append(s); }); }); /* * This content is licensed according to the W3C Software License at * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document * * File: tabs-manual.js * * Desc: Tablist widget that implements ARIA Authoring Practices */ 'use strict'; class TabsManual { constructor(groupNode) { this.tablistNode = groupNode; this.tabs = []; this.tabpanels = []; this.tabs = Array.from(this.tablistNode.querySelectorAll('[role=tab]')); this.tabs.forEach((tab, i) => { let tabpanel = document.getElementById(tab.getAttribute('aria-controls')); // Make all tabs part of the natural tab order tab.tabIndex = 0; // Adjust this line tab.setAttribute('aria-selected', 'false'); this.tabpanels.push(tabpanel); tab.addEventListener('keydown', this.onKeydown.bind(this)); tab.addEventListener('click', this.onClick.bind(this)); }); if (this.tabs.length > 0) { this.firstTab = this.tabs[0]; this.lastTab = this.tabs[this.tabs.length - 1]; this.setSelectedTab(this.firstTab); } } setSelectedTab(currentTab) { this.tabs.forEach((tab, i) => { if (currentTab === tab) { tab.setAttribute('aria-selected', 'true'); this.tabpanels[i].classList.remove('is-hidden'); } else { tab.setAttribute('aria-selected', 'false'); this.tabpanels[i].classList.add('is-hidden'); } }); } /* EVENT HANDLERS */ onKeydown(event) { let tgt = event.currentTarget, flag = false; switch (event.key) { case 'ArrowLeft': this.moveFocusToPreviousTab(tgt); flag = true; break; case 'ArrowRight': this.moveFocusToNextTab(tgt); flag = true; break; case 'Home': this.moveFocusToTab(this.firstTab); flag = true; break; case 'End': this.moveFocusToTab(this.lastTab); flag = true; break; } if (flag) { event.stopPropagation(); event.preventDefault(); } } onClick(event) { this.setSelectedTab(event.currentTarget); } moveFocusToTab(currentTab) { currentTab.focus(); } moveFocusToPreviousTab(currentTab) { let index = this.tabs.indexOf(currentTab); let prevTab = index > 0 ? this.tabs[index - 1] : this.lastTab; this.moveFocusToTab(prevTab); } moveFocusToNextTab(currentTab) { let index = this.tabs.indexOf(currentTab); let nextTab = index < this.tabs.length - 1 ? this.tabs[index + 1] : this.firstTab; this.moveFocusToTab(nextTab); } } window.addEventListener('load', function () { var tablists = document.querySelectorAll('[role=tablist].manual'); for (var i = 0; i < tablists.length; i++) { new TabsManual(tablists[i]); } }); /*Remove False Venue in Events*/ jQuery(function($){ $(document).ready(function() { $('a[href*="https://womensstudies.unc.edu/2024/02/1349/"]').remove(); }); }); /*Make sure ids do not repeat themselves*/ (function($) { $(document).ready(function() { var ids = {}; // Object to keep track of ids // Iterate over all elements with an id attribute $('[id]').each(function() { var id = $(this).attr('id'); if (ids[id]) { // If the id is already in the object, it's a duplicate // Increment the counter for the id ids[id] += 1; // Set a new unique id: original id + dash + counter value var newId = id + '-' + ids[id]; $(this).attr('id', newId); } else { // If it's not a duplicate, add it to the object with a counter of 1 ids[id] = 1; } }); }); })(jQuery); function addIDtoH1IfTabs() { // Check if there is an element with the class "tabs" on the page const tabsElement = document.querySelector('.tabs'); if (tabsElement) { // Find the first h1 element on the page const h1Element = document.querySelector('h1'); if (h1Element) { // Add the ID "tablist-1" to the h1 element h1Element.id = "tablist-1"; } } } // Run the function addIDtoH1IfTabs(); //----------------------------------------- // Content Template: tabs-font-awesome-css-and-javascript - end //----------------------------------------- //----------------------------------------- // Content Template: search-menu-item - start //----------------------------------------- document.addEventListener('DOMContentLoaded', function () { // Find the main menu var menu = document.getElementById('menu-main'); // Create a container for the search bar var searchBarContainer = document.createElement('div'); searchBarContainer.id = 'searchBarContainer'; searchBarContainer.setAttribute('aria-labelledby', 'searchIconLink'); searchBarContainer.style.display = 'none'; // Initially hide the search bar container searchBarContainer.style.flex = '0 1 auto'; searchBarContainer.style.width = '96%'; searchBarContainer.style.justifyContent = 'flex-end'; searchBarContainer.innerHTML = `