<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> <script> $(document).ready(function() { $("nav.header-nav-list>div.header-nav-item:nth-child(1)>a").click(function() { var link = $(this).text(), href = "/buying-a-home-with-us"; window.location.href=href; }); $("nav.header-nav-list>div.header-nav-item:nth-child(2)>a").click(function() { var link = $(this).text(), href = "/homeowners"; window.location.href=href; }); $("nav.header-nav-list>div.header-nav-item:nth-child(3)>a").click(function() { var link = $(this).text(), href = "/who-we-are"; window.location.href=href; }); $("nav.header-nav-list>div.header-nav-item:nth-child(4)>a").click(function() { var link = $(this).text(), href = "/lenders"; window.location.href=href; }); $("nav.header-nav-list>div.header-nav-item:nth-child(5)>a").click(function() { var link = $(this).text(), href = "/giving"; window.location.href=href; }); }); </script>