This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
function timetable(){
|
|
var d = new Date();
|
|
var n = d.getHours();
|
|
$('#tt_timetable .tt_time div').each(function(){
|
|
if($(this).data('tthour') == n ){
|
|
$(this).parents('tr').addClass('timenow');
|
|
}
|
|
});
|
|
} |