hi, also ich will mal javascript für mehrer seiten benutzen, daher will ich eine js datei machen, wo ich dann halt in der seite mit:<script="xxx.js"></script> einbinde. Mal zur Verständigung, wenn ich normal ohne extern einbinden so was habe:
in head:
<script type="text/javascript">
if (document.images)
{
img1on = new Image();
img1on.src = "images/videosysteme_orange.gif";
img1off = new Image();
img1off.src = "images/videosysteme.gif";
img2on = new Image();
img2on.src ="images/prasentationstechnik_orange.gif";
img2off = new Image();
img2off.src = "images/prasentationstechnik.gif";
img3on = new Image();
img3on.src = "images/kopierservice_orange.gif";
img3off = new Image();
img3off.src = "images/kopierservice.gif";
img4on = new Image();
img4on.src = "images/schnitt_orange.gif";
img4off = new Image();
img4off.src = "images/schnitt.gif";
}
function imgOn(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
}
}
function imgOff(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");
}
}
</script>
und dann in body:
<a href="index.php?kategorie=1&grupe=1" target="_top" onMouseOver="imgOn('img1')" onMouseOut="imgOff('img1')">
wo müsste ich dann den externen javascript einbinden!!??
Grüß