Skip to content

Instantly share code, notes, and snippets.

@KustomDeveloper
Created November 18, 2020 15:06
Show Gist options
  • Select an option

  • Save KustomDeveloper/ccfc2e366742681fa4e0bb7cbfb1d01c to your computer and use it in GitHub Desktop.

Select an option

Save KustomDeveloper/ccfc2e366742681fa4e0bb7cbfb1d01c to your computer and use it in GitHub Desktop.
Accordion Script
$(document).ready(() => {
var panelists = document.getElementsByClassName("guest-name");
var i;
for (i = 0; i < panelists.length; i++) {
panelists[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}
});
<div class="event-card">
<p class="event-time">Session 1: May 5<sup>th</sup>, 2pm EDT</p>
<a target="_new" href="https://youtu.be/-W3BJUALb60" class="replay-link">WATCH NOW <img src="https://offers.etisoftware.com/hubfs/broadband-bunch-lp-images/cta-button.png"></a>
<h2>Distance Learning: What Creates Success</h2>
<p>In this session, we will hear from educators involved in distance learning as well as researchers who have explored the requirements for successful implementation of distance learning including access to devices, access to broadband and effective training. Companies and communities should be able to evaluate if their distance learning requirements will be sufficient to meet their educational goals during this time of social distancing.</p>
<div class="guest-bio">
<h4>Our Guests:</h4>
<span class="guest-name">Todd Way</span>
<div style="display: none;"><img class="guest-img" src="https://offers.etisoftware.com/hubfs/broadband-bunch-lp-images/Way.png">
<p>Todd Way is the CEO for Douglas Fast Net, a for-profit broadband subsidiary of Douglas Electric Cooperative. Todd is a 1995 graduate of Oregon State University with a master’s in Business Administration and a B.S degree in Construction Engineering Management. Todd began his carrier in telecommunications in 1991 working with US West Communications in Oregon and Washington. In 2004 he assumed the role of VP of Operations for Rio Communications, a competitive local exchange carrier located in Roseburg, Oregon. In 2007 he took over the operations of DFN for the cooperative.</p>
<p>Todd is currently the Chair of the Northwest Telecommunications Association and of the Utilities Telecom Council’s Broadband Technology Committee. In the past Todd has sat on the boards of Eastern Oregon Telecom, the Roseburg Area Chamber of Commerce, the Umpqua Economic Development Partnership and the Douglas County Development Board.</p>
</div>
<span class="guest-name">Johannes M. Bauer</span>
<div style="display: none;"><img class="guest-img" src="https://offers.etisoftware.com/hubfs/broadband-bunch-lp-images/Bauer.png">
<p>Johannes M. Bauer is the Quello Chair for Media and Information Policy at Michigan State University (MSU). From January 2013 through June 2019, he served as the Chairperson of the Department of Media and Information at Michigan State University. He is trained as an engineer and social scientist with MA and PhD degrees from the Vienna University of Economics and Business, Austria. His research focuses on media and information policy and Internet governance, including issues such as network neutrality, overcoming digital divides, innovation in 5G wireless services, and the design of public interest technology. He uses qualitative and quantitative methods, including computational approaches to policy analysis.</p>
<p>His work has been funded by the U.S. National Science Foundation (NSF) and international organizations. Dr. Bauer has served as an advisor to public and private sector organizations in North and South America, Europe, and Asia. His most recent book, the Handbook on the Economics of the Internet (co-edited with Professor Michael Latzer at the University of Zurich), was published in 2016 by Edward Elgar. Dr. Bauer has held visiting professorships at the Technical University of Delft, Netherlands (2000-2001), the University of Konstanz, Germany (Summer 2010), and the University of Zurich, Switzerland (2012).</p>
</div>
<span class="guest-name">Pierrette Renée Dagg</span>
<div style="display: none;"><img class="guest-img" src="https://offers.etisoftware.com/hubfs/broadband-bunch-lp-images/pierrette.png">
<p>Pierrette Renée Dagg is the director of Marketing and Communications at Merit Network, the nation's longest-running research and education network. Pierrette's teams organize educational resources, reports and events that support the Michigan Moonshot, an initiative that aims to bridge the digital divide in Michigan. She is currently pursuing a Ph.D. in the Social and Philosophical Foundations of Education and Educational Technologies from the University of Toledo.</p>
</div>
<span class="guest-name">Nick Fisher</span>
<div style="display: none;"><img class="guest-img" src="https://offers.etisoftware.com/hubfs/broadband-bunch-lp-images/fisher.png">
<p>Nick Fisher is finishing out his first year as an Assistant Principal at a middle school in the suburbs of Washington, D.C. He is in his 12th year in education, all at the same school. He previously served as a Dean for two years and a history teacher for nine years. He also spent seven years as the Social Studies department chair.</p>
</div>
<span class="guest-name">Erin Huggins</span>
<div style="display: none;"><img class="guest-img" src="https://offers.etisoftware.com/hubfs/broadband-bunch-lp-images/huggins.png">
<p>Erin Huggins is a Research Associate on the Research and Evaluation team at the Friday Institute for Educational Innovation at North Carolina State University. Her current evaluation projects include work with The Homework Gap Hotspot initiative, UNC-TV, NC New Teacher Support Program, Digital Durham, and DPI’s School Business System Modernization team. Past projects include work with MyFutureNC, Digital Learning Initiative, NC Community College System, NCICU, DPI, and other stakeholders in North Carolina.</p>
<p>Erins' research interests focus on digital equity, new teacher support, teacher efficacy and motivation, and improving educational opportunities in rural communities. She holds a B.A. in English Literature, an M.A.T. in Special Education, and she is finishing a Ph.D. in Education Evaluation and Policy with a minor in Educational Psychology at North Carolina State University. Prior to joining the Friday Institute, Erin worked as a research assistant in NC State’s College of Education and worked for 11 years as a special education teacher in North Carolina.</p>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment