« MediaWiki:Common.js » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 12 : | Ligne 12 : | ||
//window.location.href = newURL ; | //window.location.href = newURL ; | ||
} | } | ||
Ligne 22 : | Ligne 18 : | ||
var newURL = "https://datafranca.org/wiki/index.php?title=Cat%C3%A9gorie:ENGLISH&pagefrom=" + input ; | var newURL = "https://datafranca.org/wiki/index.php?title=Cat%C3%A9gorie:ENGLISH&pagefrom=" + input ; | ||
var target = "_top"; | var target = "_top"; | ||
window.open(newURL); | //window.open(newURL); | ||
//window.location.href = newURL ; | //window.location.href = newURL ; | ||
window.location.replace(newURL); | |||
} | } |
Version du 18 avril 2021 à 22:15
/* Tout JavaScript ici sera chargé avec chaque page accédée par n’importe quel utilisateur. */
function mydomain() { document.write(window.location.hostname ) }
function redirectRecherche() {
var input = document.getElementById("searchTxt").value;
var newURL = "https://datafranca.org/wiki/index.php?title=Cat%C3%A9gorie:GRAND LEXIQUE FRANÇAIS&pagefrom=" + input ;
var target = "_top";
window.open(newURL);
//window.location.replace(newURL);
//window.location.href = newURL ;
}
function redirectSearch() {
var input = document.getElementById("searchTxt").value;
var newURL = "https://datafranca.org/wiki/index.php?title=Cat%C3%A9gorie:ENGLISH&pagefrom=" + input ;
var target = "_top";
//window.open(newURL);
//window.location.href = newURL ;
window.location.replace(newURL);
}
