jquery link href code example
Example 1: jquery link
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
Example 2: jquery set href of link
$('.element').attr('href', newUrl);
Example 3: jquery read href attribute
var href = $(this).attr('href');
Example 4: jQuery change href value
$("#someAnchorElement").attr("href", "http://www.myfancynewurl.com");
Example 5: jquery get link href value
$("#mylink").attr("href");