Show and hide links based on button click
By: Niraj in Javascript Tutorials on 2023-04-17
Here is a code snippet that should show and hide the links based on the button clicked:
<!DOCTYPE html>
<html>
<head>
<title>Links</title>
<style>
.links {
display: none;
}
</style>
</head>
<body>
<div>
<button onclick="toggleLinks('category1')">Category 1</button>
<button onclick="toggleLinks('category2')">Category 2</button>
<button onclick="toggleLinks('category3')">Category 3</button>
<button onclick="toggleLinks('category4')">Category 4</button>
<button onclick="toggleLinks('category5')">Category 5</button>
<button onclick="toggleLinks('category6')">Category 6</button>
<button onclick="toggleLinks('category7')">Category 7</button>
</div>
<div class="category1 links">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
<!-- Add more links as needed -->
</div>
<div class="category2 links">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
<!-- Add more links as needed -->
</div>
<div class="category3 links">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
<!-- Add more links as needed -->
</div>
<div class="category4 links">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
<!-- Add more links as needed -->
</div>
<div class="category5 links">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
<!-- Add more links as needed -->
</div>
<div class="category6 links">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
<!-- Add more links as needed -->
</div>
<div class="category7 links">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
<!-- Add more links as needed -->
</div>
<script>
function toggleLinks(category) {
var links = document.getElementsByClassName('links');
for (var i = 0; i < links.length; i++) {
if (links[i].classList.contains(category)) {
if (links[i].style.display === 'block') {
links[i].style.display = 'none';
} else {
links[i].style.display = 'block';
}
} else {
links[i].style.display = 'none';
}
}
}
</script>
</body>
</html>
This code uses the display
CSS property to hide and show the link divs based on the category button clicked. When a button is clicked, it loops through all the link divs and only shows the links in the selected category, while hiding the links in all other categories.
Add Comment
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
- Your name, rating, website address, town, country, state and comment will be publicly displayed if entered.
- Aside from the data entered into these form fields, other stored data about your comment will include:
- Your IP address (not displayed)
- The time/date of your submission (displayed)
- Your email address will not be shared. It is collected for only two reasons:
- Administrative purposes, should a need to contact you arise.
- To inform you of new comments, should you subscribe to receive notifications.
- A cookie may be set on your computer. This is used to remember your inputs. It will expire by itself.
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
- Although the administrator will attempt to moderate comments, it is impossible for every comment to have been moderated at any given time.
- You acknowledge that all comments express the views and opinions of the original author and not those of the administrator.
- You agree not to post any material which is knowingly false, obscene, hateful, threatening, harassing or invasive of a person's privacy.
- The administrator has the right to edit, move or remove any comment for any reason and without notice.
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Comments