$(document).ready(function() { $('a').filter(function() { return this.hostname && this.hostname !== location.hostname; }).after('External web') .click(function() { window.open(this.href); return false; }); });