frederic robert
Est-il possible avec WIKI de paramètrer l'ouverture d'un lien dans une nouvelle fenetre ?
[Texte du lien|www.url.com|fr]
[Texte du lien|www.url.com|fr]
a class="LinkOut" hreflang="fr" href="http://www.google.fr">Lien vers Google
function open_ext_link() { // On récupère tous les liens de la page var links = document.getElementsByTagName('a'); // On boucle sur les liens for (var i = 0 ; i < links.length ; ++i) { // On teste si la classe est LinkOut if (links[i].className == 'LinkOut') { // Une action de type onclick est ajoutée au lien links[i].onclick = function() { window.open(this.href); return false; }; } } }
<script type="text/javascript"> <!-- function init(){ open_ext_link(); } window.onload=init; if (window.attachEvent) window.attachEvent("onload", init); // --> </script>
<script type="text/javascript"> <!-- function init(){ open_ext_link(); ma_future_fonction(); } window.onload=init; if (window.attachEvent) window.attachEvent("onload", init); // --> </script>
if (links.href.indexOf('http://', 0) == 0 && links.href.indexOf(location.hostname, 7) == -1) || links.className.indexOf('LinkFile') != -1