Answers for "how to write the value of jquery in href attribute"

4

jQuery change href value

$("#someAnchorElement").attr("href", "http://www.myfancynewurl.com");
Posted by: Guest on July-23-2019
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 "how to write the value of jquery in href attribute"

Code answers related to "Javascript"

Browse Popular Code Answers by Language