19th Nov 2006
A new theme
Posted in WordPress | 3 Comments »
19th Nov 2006
These days, WWW is all about…

Technorati Tags: www, web2.0, ajax, tags, tagging, tag clouds, folksonomy, blogging, social bookmarking, rss, css, podcast
Posted in WWW | No Comments »
14th Nov 2006
function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName(”a”);
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute(”href”) &&
anchor.getAttribute(”rel”) == “external”)
anchor.target = “_blank”;
}
}
window.onload = externalLinks;
Source: Sitepoint
Posted in Snippets | No Comments »