Hallo,
wenn ich eine externe .js Datei einbinde, führt Opera diese nicht aus, wie kann man Opera dazu bringen es zu tun ,ohne die Datei ins html einzubinden.(genauer gesagt .shtml in meinem Fall)
-----------.shtml Datei---------------
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="expires" content="0">
<link rel="stylesheet" type="text/css" href="formate.css">
<script src="tauscher.js" type="text/javascript">
</script>
<title>hauptseite</title>
</head>
.
.
-----------------------
-------tauscher.js----------------------------
<!--
normal1 = new Image();
normal1.src = "neuigkeiten.png";
highlight1 = new Image();
highlight1.src = "neuigkeitenlight.png";
normal2 = new Image();
normal2.src = "uebermich.png";
highlight2 = new Image();
highlight2.src = "uebermichlight.png";
.
.
.
.
function Bildwechsel(Bildnr,Bildobjekt) {
window.document.images[Bildnr].src = Bildobjekt.src;
}
-->
---------------------