1
0
mirror of https://github.com/gsi-upm/sitc synced 2024-09-19 20:01:43 +00:00
sitc/lod/tutorial/js/ext_links.js
2021-02-18 18:10:59 +01:00

9 lines
209 B
JavaScript

$(document).ready(function() {
$('a').each(function() {
var a = new RegExp('/' + window.location.host + '/');
if (!a.test(this.href)) {
$(this).attr("target","_blank");
}
});
});