Daniel: Über button iframe inhalt verändern ...

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

  1. 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

    1. 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