I'm not sure what you mean by "don't recognize", but if you want to "hide" the actual URI, you can bind the click event handler to the node anchor and redirect the browser through location.href .
document.getElementsByTagName( 'a' )[ 0 ].addEventListener('click', function( e ) { location.href = this.getAttribute( 'data-myurl' ); e.preventDefault(); }, false);
Actual HTML markup will look like
<a href='#' data-myurl='http://www.google.com'>click me</a>
jAndy source share