Skip to content

52 in 52 – Week 5

I spent some time in this week’s class with Professor Jim McGee and the Advanced Business Law students.   

We began the class by discussing President Trump’s US Supreme Court Nominee, Neil Gorsuch.

I learned quite a bit about standard form real estate contracts, and got a chance to glimpse some of our bright, advanced students in action.  Being that Professor McGee is an attorney and former judge, his breadth of knowledge and experience is impressive and incredibly helpful in helping students learn how a seemingly simple process can be filled with potential difficulties and complexities.  It was great fun being a fly on the wall with this group.

Looking forward to Week 6!

document.addEventListener("DOMContentLoaded", function() { // Get all accordion toggle elements var accordions = document.querySelectorAll('.accordion-toggle'); // Add click event listeners to each accordion toggle accordions.forEach(function(accordion) { accordion.addEventListener('click', function() { // Get the panel-collapse element directly following this accordion-toggle var panelCollapse = this.nextElementSibling; // Check if this panel-collapse is currently open var isOpen = panelCollapse.classList.contains('open'); // Remove 'open' class from all panel-collapses accordions.forEach(function(acc) { var collapse = acc.nextElementSibling; collapse.classList.remove('open'); }); // Toggle 'open' class only on the clicked panel-collapse if (!isOpen) { panelCollapse.classList.add('open'); } }); }); });