Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor, eos.
This
And that
This text is in italics because of the em tag.
This text is bold because of the strong tag
Friday
Nothing much yo.
Week 19
Thursday
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor, eos.
This
And that
This text is in italics because of the em tag.
This text is bold because of the strong tag
Friday
Nothing much yo.
<script>
$(document).ready(function(){
// set default visible week
$('#w18div').show();
$('#w18-link').parent().attr('class','active');
$('.weekLink').on('click', function() {
var id = $(this).attr('id').split("-");
id = id[0];
// hide all weeks
$('.weekDiv').hide();
// remove class active from all li-elements
$('.weekLink').parent().removeClass('active');
// show this specific week
$('#' + id + 'div').show();
$('#' + id + '-link').parent().attr('class','active');
});