How to use javascript or jquery to change the href value of a link, and apply only the with a specific class or id?
For example:
<a href="https://new.url.com" class="change-target" id="change-target">
change to "/abc/swimming.html" :
<a href="/abc/swimming.html" class="change-target" id="change-target">
Any idea? Thanks a lot~
>Solution :
Just change the .href property.
document.querySelector("#some-id").href = "https://stackoverflow.com/";
<a href="https://www.google.com" id="some-id">Click me!</a>