I’ll try to make it even simpler, incase you haven’t figured it out yet /* var is the info you need appended - here i assume that you have the info concatenated and ready to input in your anchor tag. */ var parameters = “mydomain. com? name=Darren%20Boyle. ”; /* have an empty anchor tag with an ID. (The anchor tag could contain anything, but the contents will be overwritten with innerHTML. Modify your HTML. */ <a id=“dynamic”></a> /* manipulate the DOM and change the value of your anchor tag */ document. getElementById(“dynamic”). innerHTML(parameters); This should work, if I understand your request correctly. I haven’t tested it, since I’m on mobile. Feel free to ask for more info.