jquery change the href of a link code example
Example 1: get attribute value jquery href
var href = $(this).attr('href');
Example 2: jquery set href of link
$('.element').attr('href', newUrl);
Example 3: jquery get link href value
$("#mylink").attr("href");