Template:TUDelft/js/script

(function () {

 $(function () {
   $("#contact span").hide();
   $("#contact li").hover(function () {
     $(this).find("span").animate({width: 'show'});
   }, function () {
     $(this).find("span").animate({width: 'hide'});
   });
 });

}()); function copyToClipboard(element) {

 var $temp = $("<input>");
 $("body").append($temp);
 $temp.val(element).select();
 document.execCommand("copy");
 $temp.remove();

}