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.
onclick="this.id='name';"
function clicked( e ) {
var id = 'foo';
var current;
if ( current = document.getElementById( id ) ) {
current.id = '';
}
e.id = id;
}
<SCRIPT LANGUAGE="JavaScript">
function clicked( e ) {
var id1 = 'aktuell';
var id2='bilder';
var current;
if ( current = document.getElementById( id ) ) {
current.id = '';
}
e.id = id;
}
</SCRIPT>
<body>
<a href="aktuell.php" onclick="clicked( this )" id=" ">Aktuelles</a>
<a href="aktuell.php" onclick="clicked( this )" id=" ">Bilder</a>
</body>
function clicked(e, id) {
var current;
if ( current = document.getElementById( id ) ) {
current.id = '';
}
e.id = id;
}
<a href="aktuell.php" onclick="clicked( this ,'aktuell')" id=" ">Aktuelles</a>
<a href="aktuell.php" onclick="clicked( this, 'bilder')" id=" ">Bilder</a>
<a href="aktuell.php" onclick="clicked( this, 'aktuell')" id=" ">Sonstiges</a>
<a href="aktuell.php" onclick="clicked( this, 'bilder')" id=" ">usw.</a>