Forum Moderators: open
Can anybody confirm me that this code :
<a href="www.mysite.com"
onClick="window.open('www.mysite.com'); return false;"
onMouseOver="window.status='Click!';return true;" onMouseOut="window.status='';return true;">
<a>www.mysite.com</b></a>
will be considered as a link to the URL www.mysite.com
without any risk for my ranking in SE as Google?
Thanks.
Nobug, Google and all the other engines do not recognize any java script url's. If your client (or you) insist on having java script menus at the top or on a side menu, what you need to do is replicate the most important links on a text footer.
The most important ones being, the homepage, products, services, sitemap and contact links.
With that, you will always get the best results in the serp's, not just with Google but all the others too.
Good luck
:-) SEO
nobug.
[edited by: tedster at 8:37 pm (utc) on April 19, 2003]
Thank you everyone for your prompt reply.
nobug
<a href="http://www.mysite.com"
onClick="window.open('http://www.mysite.com'); return false;"
onMouseOver="window.status='Click!';return true;" onMouseOut="window.status='';return true;">
<a>www.mysite.com</b></a>
the URL www.mysite.com opens in the popup (I want it) and in the parent window (I do NOT want it - I want to keep the parent window content as is).
Does anyone know a way to prevent the parent window to follow the code indicated in <a href=...?