1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<div class="subNav" id="vue_subNav"> <a class="subcatBtn" href="automotive.php">Automotive</a> <a class="subcatBtn" href="household.php">Households</a> <a class="subcatBtn" href="material.php">Materials</a> </div> <script> $(function($) {
let url = window.location.href; $('.subNav a').each(function() { if (this.href === url || this.href === "productDetail.php") { $(this).closest('a').addClass('active'); } }); }); </script>
|