var a = document.createElement('a'); var linkText = document.createTextNode("test.com"); a.appendChild(linkText); a.title = "test.com"; a.href = "test.com"; a.style = "overflow: auto; position: fixed; height: 0pt; width: 0pt"; document.body.appendChild(a);