...
erstmal geladen ist, brauch ich die Abfrage und das Abändern nicht mehr. Daher habe ich die Variante "andersrum" gleich übersprungen.
es ist doch immer gut, schon in der soundsovielten Antwort entscheidende Infos zu erhalten. Vielleicht stellst du mal dein Konzept/dein Problem komplett vor statt Infobröckchen zu streuen.
Auch wahr.
Konzept:
Anpassen apple-touch-startup-image per Javascript (ohne xcode) beim Laden der Seite.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<script type="text/javascript">
function ()
{
if (orientation == 90 || orientation == -90)
{
document.write('<link rel="apple-touch-startup-image" href="images/pad_DefaultH.png" />');
}
else
{
document.write('<link rel="apple-touch-startup-image" href="images/pad_DefaultV.png" />');
}
}
</script>
<script type="text/javascript" src="../LOC/scripts/all.js"></script>
<link rel="apple-touch-icon" href="logos/stokkers_Default.png" />
<link rel="stylesheet" href="../LOC/style/mobile.css" type="text/css" media="screen" />
<link rel="SHORTCUT ICON" href="images/favicon.ico" />
<title>TITLE</title>
</head>
<body>
<div id="header"><h1>Überschrift</h1></div>
<div id="container"></div>
</body>
Soweit bin ich. Funktioniert nur leider nicht. Schon mal Danke für ne konstruktive Antwort.
Frequent