I maybe doing something wrong, but this seems quite weird to me:
for(i=1; i < 5; i++){ alert(i) }
in before mentioned firefox version gives me five counts of i. the question simply is: what the hell?
thanks!
SOLUTION: ok, it was my own mistake. i actually had an alert after the one in the loop which displayed number 5 :) thanks all who were ready to help and sorry for wasting your time.