change the url thourgh href code example
Example 1: jquery set href of link
$('.element').attr('href', newUrl);
Example 2: jquery read href attribute
var href = $(this).attr('href');
$('.element').attr('href', newUrl);
var href = $(this).attr('href');