View Single Post
  #12 (permalink)  
Old Dec 2nd, 2007, 23:13
MikeHopley MikeHopley is offline
SuperMember

SuperMember
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: how long will goolge and yahoo fully index my pages

Quote:
Originally Posted by alexgeek View Post
If it's a real link it will be in an <a> tag in the source.
Careful! So will javascript links.

Real link:
Code: Select all
 <a href="somePage.html">Link text</a>
Javascript link (bad):
Code: Select all
<a href="#" onclick="javascript: openPage('somePage.html')>Link text</a>
...or something like that, anyway. It's been so long since I used an inline event handler, I've forgotten how to write them.

It's hard to believe people are stupid enough to use this method; but if experience teaches you anything, it should be to expect people to do stupid things.

Last edited by MikeHopley; Dec 2nd, 2007 at 23:16.
Reply With Quote