Difference between revisions of "Template:Team:TU Eindhoven/Timeline Script"

Line 8: Line 8:
  
 
}
 
}
$(".timeBlock").hover(function(){ alert( $(this).attr('id').match(/\d+/) ) },function(){ });
+
 
 +
$(".timeBlock").hover(function(){ showEvent( $(this).attr('id').match(/\d+/) ) },function(){ });
  
 
});
 
});
  
 +
showEvent(idnr) {
 +
 +
$(".timeBlock").css({'background-color':'#12'+idnr.toString()+111 });
 +
 +
}
 
</html>
 
</html>

Revision as of 14:07, 18 September 2015

$(document).ready(function() { for ( index = 1; index <= 11; index++){ $("

").appendTo("#timeline").css({'float':'left','width':'97px','height':'30px'}); } $(".timeBlock").hover(function(){ showEvent( $(this).attr('id').match(/\d+/) ) },function(){ }); }); showEvent(idnr) { $(".timeBlock").css({'background-color':'#12'+idnr.toString()+111 }); }