IE 6 und setAttribute

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • #16
    Welche Steuerelemente denn Dat is doch ein ganz normales HTML Element (form mit option).

    Gruss

    tobi
    Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

    [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
    Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

    Kommentar


    • #17
      @prego
      Habe deinen Vorschlag mal so umgesetzt. Jetzt funzt es auch im IE.
      Code:
      function change_attr(div,stat){
          if(stat == 'hide')
          {
              document.getElementById(div).style.visibility = 'hidden';
              document.getElementById("content").style.visibility = 'visible';
          }
          else if(stat == 'show')
          {
              document.getElementById(div).style.visibility = 'visible';
              document.getElementById("content").style.visibility = 'hidden';
          }
      }
      Danke für die Hilfe und Gruss

      tobi
      Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

      [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
      Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

      Kommentar


      • #18
        option ist ein steuerelement, was der IE sich von windows bereitstellen lässt. Das Ding wie das aussieht zum Beispiel... Vielleicht ist dir schon aufgefallen, das die selectboxen in FF anders aussehen - nur ein bischen aber daran merkt man das der FF die "selbst" macht und sich da nicht beim betriebssystem helfen lässt.

        Kommentar

        Lädt...
        X