Webinar Series: Higher Education in the Post-Affirmative Action Landscape
- Subscribe
- Past Issues
- RSS
- Translate
- English
- العربية
- Afrikaans
- беларуская мова
- български
- català
- 中文(简体)
- 中文(繁體)
- Hrvatski
- Česky
- Dansk
- eesti keel
- Nederlands
- Suomi
- Français
- Deutsch
- Ελληνική
- हिन्दी
- Magyar
- Gaeilge
- Indonesia
- íslenska
- Italiano
- 日本語
- ភាសាខ្មែរ
- 한국어
- македонски јазик
- بهاس ملايو
- Malti
- Norsk
- Polski
- Português
- Português – Portugal
- Română
- Русский
- Español
- Kiswahili
- Svenska
- עברית
- Lietuvių
- latviešu
- slovenčina
- slovenščina
- српски
- தமிழ்
- ภาษาไทย
- Türkçe
- Filipino
- украї́нська
- Tiếng Việt
|
$(document).ready(function() {
document.getElementById("copyToClipboard").addEventListener("click", function () {
var input = document.getElementById("clipboardSource");
input.select();
var successful = document.execCommand("copy");
if (successful) {
alert('Copied "' + input.value + '" to your clipboard.');
} else {
throw new Error("Failed to copy text (verify caller was in the context of an event handler)");
}
});
$('li.more > a').click(function(){
var toToggle = $($(this).attr('data-to-toggle'));
if(toToggle.is(':visible')){
toToggle.slideUp('fast');
$(this).removeClass('is-active');
if ($('#awesomebar').find('.is-active').length < 1){ $('#awesomebar').removeClass('sub-active'); } } else { toToggle.slideDown('fast'); $(this).addClass('is-active'); $('#awesomebar').addClass('sub-active'); } return false; }); });