Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
, като това в червеното ти е пътя до различните файлове, които имаш<html>
<head>
<title></title>
<script type="text/javascript">
function redirectSite(){
var pole = document.getElementById('forma');
window.location = pole.value;
}
</script>
</head>
<body>
<form action="" method="post">
<select name="places" onchange="redirectSite();" id="forma">
<option value="pub/file.rar">Таверна</options>
<option value="adventure/music.mp3">Работа</options>
</select>
</form>
</body>
</html>
<html>
<head>
<title></title>
<script type="text/javascript">
function redirectSite(){
var pole = document.getElementById('forma');
window.location = pole.value;
}
</script>
</head>
<body>
<form action="" method="post">
<select name="places" id="forma">
<option value="pub/file.rar">Таверна</options>
<option value="adventure/music.mp3">Работа</options>
</select><br />
<input type="button" onclick="redirectSite()" value="Download" />
</form>
</body>
</html>