Answers for "how to add href value using jquery"

6

jquery set href of link

$('.element').attr('href', newUrl);
Posted by: Guest on March-04-2020
0

getting href value in jquery

$('a').attr('href'); // gets the actual value
$('a').prop('href'); // gets the full URL always
Posted by: Guest on August-28-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language