mirror of
https://github.com/gsi-upm/sitc
synced 2025-08-24 10:32:20 +00:00
added tutorial SPARQL
This commit is contained in:
8
lod/tutorial/js/ext_links.js
Normal file
8
lod/tutorial/js/ext_links.js
Normal file
@@ -0,0 +1,8 @@
|
||||
$(document).ready(function() {
|
||||
$('a').each(function() {
|
||||
var a = new RegExp('/' + window.location.host + '/');
|
||||
if (!a.test(this.href)) {
|
||||
$(this).attr("target","_blank");
|
||||
}
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user