Über button iframe inhalt verändern ...
Daniel
- html
0 Thomas Meinike0 Daniel
Ja ich habe meine Input-Buttons und möchte nun (onClick), dass dadurch etwas in meinen Iframe geladen wird. Weiss wie ich was lade
self.location.href='..' , aber weiss nicht wie ich nun den iframe ansprechen kann (iframe hat name=cont) ... hülfe :)
mfg
Dani
Hallo,
Ja ich habe meine Input-Buttons und möchte nun (onClick), dass dadurch etwas in meinen Iframe geladen wird. Weiss wie ich was lade
self.location.href='..' , aber weiss nicht wie ich nun den iframe ansprechen kann (iframe hat name=cont) ... hülfe :)
Wie bei anderen Frames auch (je nach aktueller Dokument-Position):
parent.frames["cont"].location.href="...";
top.frames["cont"].location.href="...";
MfG, Thomas
Hallo,
Ja ich habe meine Input-Buttons und möchte nun (onClick), dass dadurch etwas in meinen Iframe geladen wird. Weiss wie ich was lade
self.location.href='..' , aber weiss nicht wie ich nun den iframe ansprechen kann (iframe hat name=cont) ... hülfe :)Wie bei anderen Frames auch (je nach aktueller Dokument-Position):
parent.frames["cont"].location.href="...";
top.frames["cont"].location.href="...";MfG, Thomas
Danke Thomas :)
mfg
Daniel