Check out my code below
<script>
$(document).ready(function(){
$("button").click(function(){
$("table").toggle();
});
});
</script>
<!--Code for the Technical Specifications Button-->
<div class="w3-center">
<button class="w3-button w3-padding-large w3-light-grey" style="margin-top:64px; margin-bottom:64px">TECHNICAL SPECIFICATIONS</button>
</div>
<!--Design of the Technical Specifications Table-->
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
background-color: white;
border-radius: 25px;
}
th, td {
padding: 5px;
}
th {
text-align: center;
}
</style>
</head>
<!--Technical Specifications Table-->
<table class="table table-hover" style="width:100%">
I'm considering using a "display:none" in my CSS or writing a function to hide and unhide the code. I want this to be simple with minimal changes needed.