Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<input type="button" onclick="validateInput('frmTop');" value=" Suche nach " ID="Submit"></td>
function validateInput(senderName) {
var showMsg = true;
var qS;
var qF;
if(senderName == "frmBottom") {
qF = document.all.frmBottom;
}
else {
qF = document.all.frmTop;
}
if(qF && qF.q.value != '') {
if(window.encodeURIComponent){
qS = encodeURIComponent(qF.q.value);
}else{
qS = qF.q.value;
}
qS = qF.action + "&q="+ qS;
if(qS.length > 2048 ){
qS = qS.substring(0, 2048);
}
window.location.href = qS;
showMsg = false;
}
if(showMsg) {
showErrorMsg(true); // display notification
}
}