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