| Vorheriges Thema anzeigen :: Nächstes Thema anzeigen |
| Autor |
Nachricht |
Gast Gast
|
mehrere Popups mit Java |
|
|
Hallo,
habe Popups mit Hilfe von Java auf meiner Website eingebaut.
Leider weiß ich nicht, wie Popups sich parallel öffnen lassen, also nicht im
gleichen Frame/Fenster.
Das hab ich bisher verwendet:
Im Header:
<!-- Popup Window created with Webmaster Tools (http://webmastertools.sawpit.net).-->
<SCRIPT LANGUAGE="JavaScript"> <!--
function Start(page) {
OpenWin = this.open(page, "CtrlWindow","toolbar=No,menubar=No,location=No,scrollbars=yes,resizable=yes,status=No,width=800,height=550,left=150,top=100,");
} //--></SCRIPT>
Im Body:
<a href="javascript:void(0);"onclick="javascript:Start ('http://www.meineseite.de/index.html');">
Für euch Experten ist das doch bestimmt eine einfache Sache ;-) |
|
|
|
|
| 19 Jul 2008 17:31 |
|
  |
V4hn Moderator
|
Re: mehrere Popups mit Java |
|
|
| Gast hat Folgendes geschrieben: | [...]
Im Header:
<!-- Popup Window created with Webmaster Tools (http://webmastertools.sawpit.net).-->
<SCRIPT LANGUAGE="JavaScript"> <!--
function Start(page) {
OpenWin = this.open(page, "CtrlWindow","toolbar=No,menubar=No,location=No,scrollbars=yes,resizable=yes,status=No,width=800,height=550,left=150,top=100,");
} //--></SCRIPT>
Im Body:
<a href="javascript:void(0);"onclick="javascript:Start ('http://www.meineseite.de/index.html');">
Für euch Experten ist das doch bestimmt eine einfache Sache ;-) |
Ist es
Im Body:
| Code: | <a href="javascript:void(0);" onclick="Start('http://seite1.org'); Start('http://seite2.net');"> |
Aber ganz ehrlich... Normalerweise laesst sich so etwas
professioneller als mit zwei Popups per Java_Script_(nicht Java) loesen,
wenn man das Seitenkonzept nocheinmal ueberdenkt... |
|
_________________
 |
|
|
| 18 Aug 2008 15:10 |
|
 |
|
|