Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
Das gibt's ja auch nicht. Wahrscheinlich willst Du sowas..._stefan_ schrieb:mit onmouseclick="document.form.elements[0].click()" gehts net
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>New Document</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<style type="text/css">
#typefile {
position: relative;
text-align: left;
-moz-opacity:0 ;
filter:alpha(opacity: 0);
opacity: 0;
z-index: 2;
}
#fakefile {
position: absolute;
background-color:white;
color:black;
border:1px solid grey;
}
#fakebutton {
position: absolute;
left:155px;
border:1px solid grey;
height:20px;
}
</style>
</head>
<body>
<form name="uploadform">
<input id="fakefile" disabled="true" name="fakefile" type="text"></input>
<input id="typefile" name="file" type="file" onkeyup="document.uploadform.fakefile.value=this.value" onchange="document.uploadform.fakefile.value=this.value"></input>
<input id="fakebutton" type="button" value="Durchsuchen..."></input>
<br /><input type="file" />
</form>
</body>
</html>