I have script that copy ID internal content to user clipboard (style CTRL+C)
IF the URL contain & and the script change it to &
.
How can i prevent it? i would like it to still be ‘&’ and not &
Thanks
HTML
JavaScript
x
3
1
Link: <span id="faqURL"><?PHP echo 'http://'.SITE_ADDRESS_ROOT.'/index.php?page=search&search_type=faq&faqID='.$_GET['faqID']; ?></span>
2
<a onclick="copyToClipboard('faqURL')">Copy</a>
3
SCRIPT
JavaScript
1
9
1
function copyToClipboard(elementId) {
2
var aux = document.createElement("input");
3
aux.setAttribute("value", document.getElementById(elementId).innerHTML);
4
document.body.appendChild(aux);
5
aux.select();
6
document.execCommand("copy");
7
document.body.removeChild(aux);
8
}
9
Advertisement
Answer
You can’t, and don’t need to. &
is how HTML represents a &
character.
If you want an HTML representation of some data, then you need &
.
If you don’t want an HTML representation of some data, then don’t use innerHTML
in the first place. Use textContent
to get a text representation instead.