Meet Your Major Event 2024

// (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:2469644,hjsv:6}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv='); // Welcome to Meet Your Major

Browse the booths below to chat with Departmental Advisors and/or students in those programs in preparation for applying for your specialization. The event is open 5:30 - 7 pm on Monday March 4.

Meet Your Science Resources

Academic Advising

An Academic Advisor can help you with questions about designing your degree including minors, Faculty level requirements, taking summer courses, and more.

Talk to a Science Academic Advisor.

Science Co-op

Learn new skills and cultivate professional work experience. Build an impressive resume while working in paid, full-time roles in academic, industrial, commercial or laboratory settings.

Talk to a Science Co-Op Advisor.

Need help?

/**/ a#SCITeam:link { color: black } a#SCITeam:hover { color: blue } /**/
Chat with SCI Team event staff for support

Explore Our UBC Science Specializations



/**/ .booth { color: white } .booth:hover { color: dark blue } /**/
-->

Certificate in Climate Studies and Action

 
Website
Meet with a Representative

Faculty of Education

 
Website
Meet with a Representative

Faculty of Land and Food Systems

 
What can I do with my degree?
Website
Meet with a Representative

Faculty of Pharmaceutical Sciences

 
Website
Meet with a Representative

Medical Laboratory Science

 
Website
Meet with a Representative

Peter A. Allard School of Law

 
Website
Meet with a Representative

UBC Sauder School of Business (B+MM & Graduate School)

 
Website
Meet with a Representative
/**/ .help-bar { width: 400px; height: 50px; position: fixed; bottom: 0px; right: 10px; background-color: white; color: #57A9FF; border: 4px solid; padding: 10px; z-index: 99; transition: height 1s; } .help-bar:hover{ width: 400px; height: 100px; position: fixed; bottom: 0px; right: 10px; background-color: white; color: #57A9FF; border: 4px solid; padding: 10px; z-index: 99; } .filter-button { border: 1px solid #57A9FF; border-radius: 25px; padding-left:20px; padding-right:20px; padding-top:13px; padding-bottom: 13px; text-align:center; align-items:center; color: #57A9FF; background-color: white; margin: 10px; font-size:1.2em; font-family: 'open sans'; } .filter-button:hover { border: 1px solid #57A9FF; border-radius: 25px; padding-left:20px; padding-right:20px; padding-top:13px; padding-bottom: 13px; text-align:center; align-items:center; color: white; background-color: #57A9FF; } .filter-button.active { border: 1px solid #57A9FF; border-radius: 25px; padding-left:20px; padding-right:20px; padding-top:13px; padding-bottom: 13px; text-align:center; align-items:center; color: white; background-color: #57A9FF; } #specbox { float:left; background-color: #3cb0fd; margin-right:15px; margin-bottom:20px; padding:20px; border-radius:5px; height: 460px; } #specbox-other { float:left; background-color: #97d3e8; margin-right:15px; margin-bottom:20px; padding:20px; border-radius:5px; height: 460px; /* min-height:460px; */ } @media only screen and (max-width: 767px) { #specbox { min-height:470px; } } @media only screen and (min-width: 768px) { #specbox { min-height:470px; } } @media only screen and (min-width: 860px) { #specbox { min-height:560px; } } @media only screen and (min-width: 920px) { #specbox { min-height: 530px; } } @media only screen and (min-width: 1097px) { #specbox { min-height: 500px; } } @media only screen and (min-width: 1200px) { #specbox { min-height:460px; } } /* @media only screen and (min-width: 1200px) { #specbox-other { min-height: 460px; } } */ @media only screen and (max-width: 767px) { #specbox-other { min-height:470px; } } @media only screen and (min-width: 768px) { #specbox-other { min-height:470px; } } @media only screen and (min-width: 860px) { #specbox-other { min-height:560px; } } @media only screen and (min-width: 920px) { #specbox-other { min-height: 530px; } } @media only screen and (min-width: 1097px) { #specbox-other { min-height: 500px; } } @media only screen and (min-width: 1200px) { #specbox-other { min-height:460px; } } icon { padding:5px; } #sciresources { min-height:300px; float:left; } h3.dep-name { color:#002145; font-size: 22px; text-align: center; } /**/ // $(document).ready(function(){ $(".filter-button").click(function(){ $(".filter-button").removeClass('active'); $(this).addClass('active'); var value = $(this).attr('data-filter'); if(value == "all") { //$('.filter').removeClass('hidden'); $('.filter').show('1000'); } else { //$('.filter[filter-item="'+value+'"]').removeClass('hidden'); //$(".filter").not('.filter[filter-item="'+value+'"]').addClass('hidden'); $(".filter").not('.'+value).hide('3000'); $(".filter").filter('.'+value).show('3000'); } }); }); //

 

// document.addEventListener("DOMContentLoaded", function() { // Function to filter items based on search input and selected filter function filterItems() { var input, filter, selectedFilter, items, itemName, i, txtValue; input = document.getElementById('searchInput'); filter = input.value.toUpperCase(); // Determine the currently active filter selectedFilter = document.querySelector('.filter-button.active').getAttribute('data-filter'); items = document.getElementsByClassName('filter'); // Loop through all items, and hide those that don't match the search query and selected filter for (i = 0; i < items.length; i++) { itemName = items[i].getElementsByClassName("dep-name")[0]; if (itemName) { txtValue = itemName.textContent || itemName.innerText; // Check both the text filter and category filter if (txtValue.toUpperCase().indexOf(filter) > -1 && (selectedFilter === 'all' || items[i].classList.contains(selectedFilter))) { items[i].style.display = ""; } else { items[i].style.display = "none"; } } } } // Function to update active filter class function updateActiveFilter() { var buttons = document.getElementsByClassName('filter-button'); for (var i = 0; i < buttons.length; i++) { buttons[i].onclick = function() { var current = document.querySelector('.filter-button.active'); if (current) current.classList.remove('active'); this.classList.add('active'); filterItems(); // Re-apply filtering with the new active filter } } } // Attach the updateActiveFilter function to filter buttons updateActiveFilter(); // Attach the filter function to the search input event for real-time filtering document.getElementById('searchInput').addEventListener('keyup', filterItems); // Attach the filter function to the search icon click event for manual filtering document.getElementById('searchIcon').addEventListener('click', filterItems); // Optional: Also trigger search/filter when user presses "Enter" on the keyboard while focusing on the search input document.getElementById('searchInput').addEventListener('keypress', function(event) { if (event.key === "Enter") { event.preventDefault(); // Prevent the default action to avoid form submission or other unwanted side effects filterItems(); } }); }); //

Musqueam First Nation land acknowledegement

We honour xwməθkwəy̓ əm (Musqueam) on whose ancestral, unceded territory UBC Vancouver is situated. UBC Science is committed to building meaningful relationships with Indigenous peoples so we can advance Reconciliation and ensure traditional ways of knowing enrich our teaching and research.

Learn more: Musqueam First Nation

Faculty of Science

Office of the Dean, Earth Sciences Building
2178–2207 Main Mall
Vancouver, BC Canada
V6T 1Z4
UBC Crest The official logo of the University of British Columbia. Urgent Message An exclamation mark in a speech bubble. Arrow An arrow indicating direction. Arrow in Circle An arrow indicating direction. A bookmark An ribbon to indicate a special marker. Calendar A calendar. Caret An arrowhead indicating direction. Time A clock. Chats Two speech clouds. External link An arrow pointing up and to the right. Facebook The logo for the Facebook social media service. A Facemask The medical facemask. Information The letter 'i' in a circle. Instagram The logo for the Instagram social media service. Linkedin The logo for the LinkedIn social media service. Lock, closed A closed padlock. Lock, open An open padlock. Location Pin A map location pin. Mail An envelope. Mask A protective face mask. Menu Three horizontal lines indicating a menu. Minus A minus sign. Money A money bill. Telephone An antique telephone. Plus A plus symbol indicating more or the ability to add. RSS Curved lines indicating information transfer. Search A magnifying glass. Arrow indicating share action A directional arrow. Spotify The logo for the Spotify music streaming service. Twitter The logo for the Twitter social media service. Youtube The logo for the YouTube video sharing service.