« MediaWiki:Common.js » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 3 : | Ligne 3 : | ||
function mydomain() { document.write(window.location.hostname ) } | 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 ; | |||
} | |||
Version du 15 avril 2021 à 11:36
/* 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.replace(newURL);
//window.location.href = newURL ;
}
