I need to know how to change the url of a link.
For example www.sitename.com to www.anothersitename.com
How do i do this using javascript?
<a id="myAnchor" href="http://www.microsoft.com">Microsoft</a>
<button onclick="myFunction()">Change link</button>
function myFunction() {
//For example How to change Microsoft url to w3 schools url?
//what do i put here?
}