Page is a not externally linkable
browsee - 3:44 am on Mar 5, 2011 (gmt 0)
Moderators, please remove this comment if it is not OK to add code in this forum.
Here is the Javascript No follow sample if you are interested.
1. Add jQuery in the header.
2. Add class 'js-nofollow' in your link
3. Add url in the rel tag.
Cheers,
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head profile="http://gmpg.org/xfn/11">
<title>Your Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>
<script type="text/javascript">
$(function() {
$('.js-nofollow').live('click', function() {
var isTargetBlank = false;
if ($(this).attr("target") == "_blank") {
isTargetBlank = true;
}
var link = $(this).attr("rel");
if (isTargetBlank) {
window.open(link);
return false;
}
else {
$(this).attr("href", link);
}
});
});
</script>
</head>
<body>
<div>
<a class="js-nofollow" rel="http://www.twitter.com/" title="Follow us on Twitter" target="_blank" href="#">Follow us on Twitter</a>
</div>
</body>