Thank you, Jonathan,
moving out field instead of hiding them is an interesting idea. Also I
don't think it can be nicely animated as current solution.
A word about "over complicated javascript" (moslty an aswer to rf).
First of all I know something apout JavaScript to not be afraid of
writing complicated stuff and also I do testing under targeted
browsers. So far this radiobutton bug is the only one. The page shown
by link is not the actual page on the project I'm working on. First of
all client wants two modes - basic and advanced. Secondly wistles such
as animated collapses make customers leave their money easier. And
thirdly the whole form is autogenerated, I just specify which blocks I
want, with what properties and boom - the form is ready. Form that
I'm referring to as en example is just a static snapshot of what we
have in real project.
On 13 , 16:25, "Jonathan N. Little" <lws4... DeleteThis @centralva.net> wrote:
> Andriy wrote:
> >>>http://www.rootshell.be/~zzandy/radiocheck.php
> >>> to see the problem just click "Switch to advanced filter"
> >> Error 404
>
> > Sorry, it'shttp://www.rootshell.be/~zzandy/radiocheck.html
>
> First of all use strict not transitional doctype if you want to have any
> hope of constancy of display. Throwing IE in quirks mode and all bets
> are off.
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
> "http://www.w3.org/TR/html4/strict.dtd">
>
> Next this is *XHTML* syntax not *HTML*
>
> <input type="hidden" value="1" name="page"/>
> ^
> Lose the '/' that you have on all your single tag elements. Even for
> XHTML documents IE's poor handling of XHTML will bork if you do not have
> a space before the slash.
>
> Next JavaScript seem a bit overly complicated. You may find to hide and
> reveal fields that is it better to not toggle their display property but
> move them on and off the view port by toggling their margin and
> position from absolute to relative...less likely for IE to "reset" the
> values.
>
> --
> Take care,
>
> Jonathan
> -------------------
> LITTLE WORKS STUDIOhttp://www.LittleWorksStudio.com