how to change the href of a anchor in jquery code example
Example 1: jquery set href of link
$('.element').attr('href', newUrl);
Example 2: scroll jquery to anchor
$('html,body').animate({ scrollTop: $("#anchor").offset().top }, 'slow');
$('.element').attr('href', newUrl);
$('html,body').animate({ scrollTop: $("#anchor").offset().top }, 'slow');