VollDerNewb
Gesperrt
Wie schaffe ich es, dass mehrere Links mit einem einzigen Klick angeklickt werden?
Gruss Newb
Gruss Newb
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.
Wie schaffe ich es, dass mehrere Links mit einem einzigen Klick angeklickt werden?
Gruss Newb
[FONT=Arial]<html>
<head>
<script type="text/javascript">
<!--
function aufruf() {
links = new Array("http://www.muster.de/", "http://www.beispiel.de/", "http://www.test.de/");
f = new Array(links.length);
for (var j=0; j<links.length; j++) {
f[j]=window.open(links[j], "Fenster"+j, "width=310,height=400,left=0,top="+(j*10));
}
}
//-->
</script>
</head>
<body>
<a href="javascript:aufruf()">alles auf einen Klick</a>
</body>
</html>[/FONT]
Vielen Dank, genau so hab ich mir das vorgestellt!