21 lines
354 B
JavaScript
21 lines
354 B
JavaScript
|
|
$(document).ready(function(){
|
||
|
|
|
||
|
|
var currentEvent = "038";
|
||
|
|
|
||
|
|
$('.event-'+currentEvent).show();
|
||
|
|
|
||
|
|
$('.event-selector li').on("mouseover",function(){
|
||
|
|
$(this).attr("text-size","40px");
|
||
|
|
});
|
||
|
|
|
||
|
|
$('.event-selector li').on("click",function(){
|
||
|
|
var number = $(this).text();
|
||
|
|
console.log(number);
|
||
|
|
});
|
||
|
|
|
||
|
|
function loadEvent(eventNumber){
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
});
|