I have 4 links in my menu; about, archives, categories, and links. If I click on "about" the content for "about" is being visible. If I then click on "categories", the content for "about" will be replaced with the content for "categories".
So far so good, but I can't hide the content if I click on the link for the content that being currently visible. Demo on jsFiddle.
$('body').on('click', '#page', function() {
var page = $(this).attr('data');
if($('.menu-pages').is(':visible')) {
if(page == 'about') {
$('#about').show();
$('#archives').hide();
$('#categories').hide();
$('#links').hide();
} else if(page == 'archives') {
$('#archives').show();
$('#about').hide();
$('#categories').hide();
$('#links').hide();
} else if(page == 'categories') {
$('#categories').show();
$('#about').hide();
$('#archives').hide();
$('#links').hide();
} else if(page == 'links') {
$('#links').show();
$('#about').hide();
$('#archives').hide();
$('#categories').hide();
}
} else {
$('.menu-pages').show();
if(page == 'about') {
$('#about').show();
} else if(page == 'archives') {
$('#archives').show();
} else if(page == 'categories') {
$('#categories').show();
} else if(page == 'links') {
$('#links').show();
}
}
});
How can I make the content for the pages hide when I click on the link in my menu, after I have made the content for the page visible? And how can I make the code shorter?
Here's a way to do it much more easily
Fiddle