Issue
How can I add the href
attribute to a link dynamically using JavaScript?
I basically want to add a href
attribute to <a></a>
dynamically (i.e. when the user clicks on specific image in the website).
So from:
<a>Link</a>
I need to go to:
<a href="somelink url">Link</a>
Solution
var a = document.getElementById('yourlinkId'); //or grab it by tagname etc
a.href = "somelink url"
Answered By - stecb
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.