Quote:
Originally Posted by neoteric
Hi,
rel="nofollow" will open link in the same window while rel="external nofollw" will open link in a new ( blank ) window .
|
CORRECT! Both are nofollow links. Both are treated the same by Google. The only difference is whether the page being linked to is opened in a new browser window or the same browser window.
The HTML 4.0 spec took away the target attribute but added rel. Though external is not one of the standard link types values defined by the w3c to be used with the rel attribute, it is a sort of defacto standard used on a lot of sites, blog themes, etc. to emarkup the link to indicate that it should be opened in a new window. This can be accomplished by creating a javascript function that runs as part of the onload event handler to access the browser dom and modify the links w/ rel="external *" so that they open in a new window.
Last edited by Canonical; 10-14-2009 at 03:47 PM..
|