The Illinois Association of Engineering Technology Professionals Board

'); mywindow.document.write('

' + document.title + '

'); mywindow.document.write(document.getElementById(elem).innerHTML); mywindow.document.write(''); mywindow.document.close(); // necessary for IE >= 10 mywindow.focus(); // necessary for IE >= 10*/ mywindow.print(); mywindow.close(); return true; } function printDiv() { jQuery('#printdiv').hide(); var myStyle = ''; var divToPrint=jQuery('.woocommerce').html(); var newWin=window.open('','Print-Window'); newWin.document.open(); newWin.document.write(''+myStyle+divToPrint+''); newWin.document.close(); // setTimeout(function(){newWin.close();},10); } function showTab(tabId) { document.querySelectorAll('.lecture-tab-content, .workshop-tab-content').forEach(function(content) { content.classList.remove('active'); }); document.querySelectorAll('.conference-tab').forEach(function(tab) { tab.classList.remove('active'); }); document.getElementById(tabId).classList.add('active'); document.querySelector(`.conference-tab[onclick="showTab('${tabId}')"]`).classList.add('active'); } function showMobileTab(tabId) { document.querySelectorAll('.Mobileview-agenda-tabs .mobile-tab-content').forEach(function(content) { content.classList.remove('active'); }); document.querySelectorAll('.Mobileview-agenda-tabs .conference-tab').forEach(function(tab) { tab.classList.remove('active'); }); document.querySelector(`#${tabId}`).classList.add('active'); document.querySelector(`.Mobileview-agenda-tabs .conference-tab[onclick="showMobileTab('${tabId}')"]`).classList.add('active'); }