<!DOCTYPE html>
<html>
<head>
</head>
<body>
<a id="a-id" hreflang="en-us" href="http://www.collectivesolver.com/">collectivesolver</a>
<script>
function get_a_id()
{
document.getElementById("p-id").innerHTML = document.getElementById("a-id").id;
}
/*
run:
a-id
*/
</script>
<button onclick="get_a_id()">Get a id</button>
<p id="p-id"></p>
</body>
</html>