@Scott ... It is really rather simple to prove that toggle() is not
working, using dbj.org/h.htm and IE8 or C or FF javascript
consoles .... We do not have to (re)create streams of simillar but
different pages.
So, open dbj.org/h.htm in IE8 and then in it's (very good) javascript
console execute : $(".child-row123:first").toggle().css("display") ...
The result will be allways: "none" .
Then look into the toggle() source ... You see ? Ok, to prove what you
have just found, in the still opened console in IE8 execute : $
(".child-row123:first").is(":hidden")
And the result is always "false" ... Try this on the re-started IE8
and dbj.org/h.htm, and the result is always "false".
I hope there is no need to mention that all of this works on in C and
FF ? (Oops, I just mentioned it ..)
And I do also sincerely hope there is no need to mention that in
http://www.javascripttoolbox.com/jquery/ , all of this works ok even
in IE8 ?
Ok, by looking into the jQuery source and the toggle() implementation
it seems that is(":hidden") does not work using the latest jQ nightly
and IE8.
I do seem to remember the thread which was about is(":hidden")
problem ?
Maybe I should have mentioned all of this in the first post ...
-- DBJ