MediaWiki:Skin/Projekt:Adventure/176.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(mal testen, ob man dem Hund so seinen Namen sagen kann) |
K |
||
Zeile 7: | Zeile 7: | ||
document.getElementById("eingabe2").innerHTML=("<form action='#' id='form2'><input id='ef2' type='text'></input> <input type='submit' value='OK' id='okbtn2'/></form>"); | document.getElementById("eingabe2").innerHTML=("<form action='#' id='form2'><input id='ef2' type='text'></input> <input type='submit' value='OK' id='okbtn2'/></form>"); | ||
document.getElementById("form2").onsubmit = function () { | document.getElementById("form2").onsubmit = function () { | ||
− | location.href = wgScript+"?title="+encodeURI(ZIEL)+" | + | location.href = wgScript+"?title="+encodeURI(ZIEL)+"&name="+document.getElementById("ef2").value; |
return false; //Für den IE | return false; //Für den IE | ||
} | } | ||
}); | }); |
Aktuelle Version vom 23. Juni 2011, 14:22 Uhr
var ZIEL = "Projekt:Adventure/185"; //
// Damit man dem Hund seinen Namen sagen kann
addOnloadHook( function () {
// INIT
document.getElementById("eingabe2").innerHTML=("<form action='#' id='form2'><input id='ef2' type='text'></input> <input type='submit' value='OK' id='okbtn2'/></form>");
document.getElementById("form2").onsubmit = function () {
location.href = wgScript+"?title="+encodeURI(ZIEL)+"&name="+document.getElementById("ef2").value;
return false; //Für den IE
}
});