<ul class="navigation" role="navigation">
<li><a href="#"><i class="fas fa-tachometer-alt"></i> Dashboard</a></li>
<li><a href="{% url 'asset_list' %}"><i class="fas fa-box"></i> Assets</a></li>
<li><a href="#"><i class="fas fa-chart-bar"></i> Reports</a></li>
</ul>
In the above html code i want to hide asset_list menu.
<thead>
<tr>
<th></th>
<th>Privilege Update</th>
<th>Report Download</th>
<th>Assign Asset</th>
<th>Asset History</th>
<th>View</th>
<th>Edit</th>
<th>Delete</th>
<th>Add</th>
</tr>
</thead>
<tbody>
<tr>
<td>Assets</td>
<td>
</td>
<td>
</td>
<td>
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</td>
hide the asset menu when clicking a radio button in another page .
Here both dashboard and switch are in two separate html pages.hide the asset menu when clicking a radio button in another page.