Unobtrusive new window links | ThinkVitamin.com Demo

This illustrates the use of getElementsByAttribute and getElementsByExternal. In the first list, the colored links have an attribute of rel="help", and in the second group, the colored links are external links. All green and orange links will open in a new window. Take special note of our init method which assigns the popup window :)

var helpLinks = $D.getElementsByAttribute('rel','help','a','first-list');
var externalLinks = $D.getElementsByExternal('second-list');
$E.on([helpLinks, externalLinks], 'click', function(e) { $E.stopEvent(e); window.open(this.href); });