Hello,
I've question about rel="nofollow" tag for js links. For example, my links are like that:
<a href="javascript:void(0);" onClick="open_window('http://www.a.com/1.html','dene',370,250);return false;"></a>
And googlebot can thread to a.com/1.html but i want to don't follow it. I already blocked 1.html to robots.txt and put in meta noindex tag on this page. But i wonder about if i put rel="nofollow" tag like the following links, is there any problem? Because href tag has javascript:void(0);
For example:
<a href="javascript:void(0);" onClick="open_window('http://www.a.com/1.html','dene',370,250);return false;" rel="nofollow"></a>
Are there any best practice for this case?
Thank you.