DOCTYPE strict target="_blank" ???

  • Ich habe jetzt folgenden Doctype deklariert:

    Zitat

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd">

    Der soll auch so bleiben, um zu verhindern, dass der IE in den Quirksmodus geht.

    Nun möchte ich aber, dass Links, die von der Site wegführen, in einem neuen Fenster geöffnet werden. Beim Validieren kommt nun diese Meldung:

    Zitat

    Line 48, Column 86: there is no attribute "TARGET".

    …e" title="Kreisverband Celle" target="_blank">Kreisverband Celle</a>

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    Wie kann ich jetzt ohne das target Attribut einem Link sagen, dass er in einem neuen Fenster aufgehen soll.

    Hier noch der Link zum derzeitigen Testbereich:

    http://www.roteskreuz-wietze.drk.de/WietzeDiv/index.php

    Wer andern eine Bratwurst brät, wird selbst zum Bratwurstbratgerät.
    Ron Stoppable

  • Normalerweise nicht, es sei denn das ist mit einem Script mögliche, welches ich nicht kenne.

    Allerdings:
    Wenn du diesen nimmst

    Code
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">


    ist
    a) target="_blank" zulässig und
    b) holst du den IE aus dem Quirks- in den Standard-Mode, so dass auch er das Boxmodell richtig darstellt.