GooGirl: document.getElementById & defaultValue - FF,Opera,..: ok; IE: NO

Hallo Leute,
wollte wissen warum der IE den Code:

<html>
<body>
<input id="searchfield" type="text">
<script language="JavaScript">
<!--
document.getElementById("searchfield").defaultValue = "Suchen nach...";
-->
</script>
</body>
</html>

nicht ausführt? Opera, Firefox, Safari machen alle keine Probleme. Nur der IE (6 sowie auch 7!) zickt mal wieder. Ist die Variable im IE readonly???

Gruß,
GooGirl

  1. Hi,

    wollte wissen warum der IE den Code:
    [...]
    document.getElementById("searchfield").defaultValue = "Suchen nach...";

    nicht ausführt? Opera, Firefox, Safari machen alle keine Probleme. Nur der IE (6 sowie auch 7!) zickt mal wieder. Ist die Variable im IE readonly???

    Das koennte man ja mal nachlesen gehen: MSDN: defaultValue Property

    MfG ChrisB

    --
    "The Internet: Technological marvel of marvels - but if you don't know *what* you're lookin' for on the Internet, it is nothing but a time-sucking vortex from hell."
    1. Danke! =)

      GooGirl