Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Also ich möchte halt wenn man z.B. die 5. Jahrgangsstufe auswählt, dass dann der Link in einem neuen Tab geöffnet wird (wie target="_blank"):
<h1>Biologie / NuT</h1>
<br />
<div style="border: 1px solid rgb(102, 102, 102); padding: 1em; text-align: justify;">
<center>Lehrpläne:
<select id="Biologie / NuT">
<option>Bitte Jahrgangsstufe wählen!</option>
<option value="http://www.isb-gym8-lehrplan.de/contentserv/3.1.neu/g8.de/index.php?StoryID=26334">5. Jahrgangsstufe (NuT)</option>
<option value="http://www.isb-gym8-lehrplan.de/contentserv/3.1.neu/g8.de/index.php?StoryID=26433">6. Jahrgangsstufe (NuT)</option>
<option value="http://www.isb-gym8-lehrplan.de/contentserv/3.1.neu/g8.de/index.php?StoryID=26436">7. Jahrgangsstufe (NuT)</option>
<option value="http://www.isb-gym8-lehrplan.de/contentserv/3.1.neu/g8.de/index.php?StoryID=26281">8. Jahrgangsstufe</option>
<option value="http://www.isb-gym8-lehrplan.de/contentserv/3.1.neu/g8.de/index.php?StoryID=26259">9. Jahrgangsstufe</option>
<option value="http://www.isb-gym8-lehrplan.de/contentserv/3.1.neu/g8.de/index.php?StoryID=26227">10. Jahrgangsstufe</option>
<option value="http://www.isb-gym8-lehrplan.de/contentserv/3.1.neu/g8.de/index.php?StoryID=26196">11./12. Jahrgangsstufe</option>
</select> | <a href="[wblink706]">Grundwissen</a></center>
</div>
<br /><br />
<div style="float: right;">
<img src="/media/Bio%20NuT/Atemvolumengif.gif" width="270" />
</div>
<script>
document.getElementById('Biologie / NuT').onchange = function() {
if (this.selectedIndex!==0) {
window.location.href = this.value;
}
};
</script>
<script>
document.getElementById('Biologie / NuT').onchange = function() {
if (this.selectedIndex!==0) {
window.open(this.value);
}
};
</script>