hi,
- Du inkrementierst deine Schleife mit ++i statt i++. Ohne es auszuprobieren, es könnte sein, dass du durch das pre-increment das 0. Element überspringst.
Nein, das spielt hier keine Rolle.
Kannst du leicht kontrollieren, in dem du mal
javascript:for(i=0;i<3;i++) { alert(i); }
und
javascript:for(i=0;i<3;++i) { alert(i); }
in der Adresszeile deines Browsers aufrufst.
gruß,
wahsaga
--
/voodoo.css:
#GeorgeWBush { position:absolute; bottom:-6ft; }
/voodoo.css:
#GeorgeWBush { position:absolute; bottom:-6ft; }